/* About Page Styles */
.about-page {
    background-color: #fff;
    min-height: 80vh;
    padding: 0;
    /* Remove padding from main container to allow full-width hero */
}

.about-hero-header {
    background-color: #efe9e6;
    /* Beige background color */
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
}

.about-hero-header h1 {
    font-family: 'rozha one', serif;
    font-size: 48px;
    color: #000;
    margin: 0;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    /* Add padding here instead */
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column - Profile */
.about-profile {
    flex: 0 0 300px;
    /* Fixed width for profile column */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content in the left column */
    text-align: center;
}

.profile-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 4px;
    /* Optional slight rounding */
    margin-bottom: 20px;
    object-fit: cover;
}

.about-profile h2 {
    font-family: 'rozha one', serif;
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.profile-title {
    font-family: 'rozha one', serif;
    /* Or bold sans-serif depending on exact look, user said 'Advanced Certified...' looks like bold serif or sans */
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.4;
    max-width: 200px;
}

.contact-link-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.contact-link-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.badges-container {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

.badges-container img {
    width: 100px;
    height: auto;
}

/* Right Column - Info */
.about-info {
    flex: 1;
    padding-top: 0;
    /* Removed padding to align with image top */
}

.bio-text {
    font-family: 'cormorant garamond', serif;
    font-size: 16px;
    line-height: 1.2;
    /* Reduced line height */
    color: #000;
    margin-top: 0;
    /* Ensure no top margin for alignment */
    margin-bottom: 24px;
    text-align: left;
    font-weight: bold;
}

.qualifications {
    margin-top: 24px;
}

.qualifications h3 {
    font-family: 'cormorant garamond', serif;
    font-size: 16px;
    /* Matches bio-text size */
    font-weight: normal;
    /* Regular weight as per screenshot */
    color: #000;
    margin-bottom: 24px;
    text-align: left;
    font-weight: bold;
}

.qualifications ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.qualifications li {
    font-family: 'cormorant garamond', serif;
    font-size: 16px;
    /* Matches bio-text size */
    line-height: 1.5;
    color: #000;
    margin-bottom: 12px;
    /* More spacing between list items */
    position: relative;
    padding-left: 20px;
    font-weight: bold;
    /* Slightly more indentation */
}

.qualifications li::before {
    content: "•";
    position: absolute;
    left: 4px;
    /* Adjusted bullet position */
    top: 0;
    /* Align bullet with text */
    color: #000;
    font-size: 20px;
    /* Bullet size */
}

/* Responsive Styles */
@media (max-width: 900px) {
    .about-hero-header {
        height: 180px;
    }

    .about-hero-header h1 {
        font-size: 36px;
    }

    .about-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .about-profile {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .about-info {
        width: 100%;
    }

    .badges-container {
        justify-content: center;
    }
}