.header{
    padding: 20px 15px 20px 20px !important;
}

.video-wrapper{
    aspect-ratio: 16 / 9 !important;
}

.second-page-heading{
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 150% !important;
}


.grwth_title{
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    color: #00315A;
}

.grwth_info_section{
    padding: 20px 20px !important;
}
.grwth_info_section_2{
    padding: 20px 20px 0 20px !important;
}
.grwth_info_section_3{
    padding: 0 20px 0 20px !important;
}
.grwth_info_section_ara{
    padding: 30px 30px !important;
}

@media (min-width: 1024px) {
    .second-page-image {
        height: 100% !important;
    }
}

/* Profile Header */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-header-title {
    font-size: 20px;
    font-weight: 600;
    color: #00315A;
    /*letter-spacing: 2px;*/
    margin: 0;
}

/* Profile Page */
.profile-page {
    /*background: #F5F5F5;
    min-height: calc(100vh - 70px);*/
}

/* Profile Content */
.profile-content {
    padding: 10px 15px 0 15px;
}

/* Profile Row */
.profile-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* Profile Field */
.profile-field {
    flex: 1;
}

.profile-field.full-width {
    flex: 1 1 100%;
}

.profile-label {
    font-size: 12px;
    font-weight: 600;
    color: #C5C5C7;
    letter-spacing: 0;
    margin-bottom: 8px;
    display: block;
}

.profile-value {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    color: #001526;
    word-break: break-word;
}

/* Country Value */
.country-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
}

/* Profile Footer */
.profile-footer {
    margin-top: 50px;
    text-align: center;
}

.privacy-policy-link {
    display: inline-block;
    font-size: 16px;
    color: #00315A;
    text-decoration: underline;
    font-weight: 500;
    margin-bottom: 20px;
}

.profile-info-text {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.support-email {
    color: #00315A;
    text-decoration: underline;
    font-weight: 500;
}

/* Profile Action Button */
.profile-action-button {
    width: 77%;
    padding: 12px;
    background: transparent;
    color: #00315A;
    border: 2px solid #00315A;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.profile-action-button:hover {
    background: #00315A;
    color: #fff;
}

/* Delete Profile Link */
.profile-delete-link {
    background: none;
    border: none;
    color: #00315A;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.profile-delete-link:hover {
    color: #00213d;
}

/* Profile Modal Overlay */
.profile-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.profile-modal-overlay.active {
    display: flex;
}

/* Profile Modal */
.profile-modal {
    background: #F5F5F5;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
}

.profile-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.profile-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #00315A;
    margin-bottom: 20px;
    line-height: 1.4;
}

.profile-modal-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

/* Delete Input */
.profile-delete-input-wrapper {
    margin-bottom: 30px;
}

.profile-delete-input {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 2px solid #D1D1D1;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    background: transparent;
    outline: none;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 500;
}

.profile-delete-input::placeholder {
    color: #D1D1D1;
    letter-spacing: 2px;
}

.profile-delete-input:focus {
    border-bottom-color: #00315A;
}

/* Modal Actions */
.profile-modal-actions {
    display: flex;
    gap: 15px;
}

.profile-modal-button {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #00315A;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.profile-modal-button.cancel-button {
    background: transparent;
    color: #00315A;
}

.profile-modal-button.cancel-button:hover {
    background: #00315A;
    color: #fff;
}

.profile-modal-button.confirm-button {
    background: #00315A;
    color: #fff;
}

.profile-modal-button.confirm-button:hover {
    background: #00213d;
}

.profile-modal-button.confirm-button:disabled {
    background: #E8E8E8;
    border-color: #E8E8E8;
    color: #999;
    cursor: not-allowed;
}

/* Responsive */
@media (min-width: 768px) {
    .profile-header-title {
        font-size: 24px;
    }

    .profile-label {
        font-size: 14px;
    }

    .profile-value {
        font-size: 20px;
    }

    .privacy-policy-link {
        font-size: 18px;
    }

    .profile-info-text {
        font-size: 16px;
    }

    .profile-delete-link {
        font-size: 18px;
    }

    .profile-modal-title {
        font-size: 24px;
    }

    .profile-modal-description {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .profile-content {
        padding: 60px 60px 100px 60px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .profile-header-title {
        font-size: 28px;
    }

    .profile-row {
        gap: 40px;
        margin-bottom: 40px;
    }

    .profile-action-button {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
