html, .profile-page {
    width: 100%;
    margin: 20px;
}
.header {
    text-align: center;
    margin-bottom: 25px;
}
.header h2 {
    font-size: 26px;
    margin-bottom: 5px;
    /* color: #0a3d62; */
    color: #eef3fb;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.profile-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #E6ECF5;
}
.profile-header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #eef3fb;
    margin-bottom: 20px;
}
.profile-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #e3f1ff, #bf9de1); */
    background: #F9FBFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 12px;
    /* border: 3px solid #764ba2; */
    border: 3px solid #E1E9F6;
}
.profile-header h3 {
    font-size: 16px;
    color: #0a3d62;
    font-weight: 600;
    margin-bottom: 4px;
}
.profile-header p {
    font-size: 13px;
    color: #6c7b8a;
}
.info-box {
    /* background: linear-gradient(135deg, #e3f1ff, #f0f7ff); */
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    /* border-left: 4px solid #007bff; */

    background: #F9FBFF;
    border: 4px solid #E1E9F6;
}
.info-box p {
    font-size: 13px;
    color: #0a3d62;
    line-height: 1.6;
    margin: 0;
}
.icon {
    display: inline-block;
    width: 18px;
    margin-right: 8px;
    opacity: 0.6;
}
.profile-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #EDF1F7;
}
.profile-row:last-child {
    border-bottom: none;
}
.profile-row label {
    /* color: #6c7b8a; */
    color: #6B7A90;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.profile-row span {
    font-weight: 600;
    color: #0a3d62;
}
/* CATEGORY CARD DESIGN */
.category-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #dce8f7;
}
.category-visual {
    text-align: center;
    margin-bottom: 25px;
    padding: 30px 20px;
    /* background: linear-gradient(135deg, #e3f1ff, #bf9de1); */
    border-radius: 14px;
    background: #F9FBFF;
    border: 1px solid #E1E9F6;
}
.category-visual-icon {
    font-size: 80px;
    margin-bottom: 15px;
    display: block;
}
.category-visual-text {
    font-size: 14px;
    /* color: #6c7b8a; */
    color: #6B7A90;
    line-height: 1.6;
}
.category-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0a3d62;
    text-align: center;
    line-height: 1.4;
}
.category-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
.category-card {
    flex: 1;
    text-align: center;
    margin: 0 5px;
    /* background: linear-gradient(135deg, #e3f1ff, #bf9de1); */
    background: #F0F6FF;
    padding: 15px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    /* color: #0a3d62; */
    color: #1A2B4B;
    transition: 0.2s;
    border: 2px solid transparent;
}
.category-card:hover {
    transform: translateY(-3px);
    background: #E4EEFF;
}
.category-card.active {
    /* background: #007bff; */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #005fcc;
}

/* Continue Button */
.continue-btn {
    width: 100%;
    padding: 15px;
    /* background: #007bff; */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}
.continue-btn:disabled {
    background: #bf9de1;
    cursor: not-allowed;
}
.continue-btn:not(:disabled):hover {
    /* background: #005fcc; */
    background: linear-gradient(135deg, #667eea 0%, #4e0399 100%);
    transform: translateY(-3px);
}

.editable {
    display: flex;
    align-items: center;
    gap: 8px;
    
}

.editable input {
   flex: 1;
    font-weight: 500;
    color: #0a3d62;
    border: 1px;
    font-size: 15px;
}


.edit-icon {
    cursor: pointer;
    font-size: 10px;
}

.edit-icon:hover {
    opacity: 0.7;
}

.save-btn{

    background: #bf9de1;
    cursor: pointer;
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 100%;
    padding: 6px;

}

/* Desktop Layout */
@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
        gap: 25px;
    }
    .profile-card {
        flex: 1;
    }
    .category-section {
        flex: 1;
    }
    .profile-page {
        max-width: 1200px; /* desktop only */
    }
}
@media (max-width: 767px) {
    .content-wrapper {
        flex-direction: column !important;
        width: 100%;
    }
}