body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #222;
}

.site-header {
    padding: 24px;
}

.nav {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #222;

    font-weight: 400;
    font-size: 1.02rem;

    padding: 10px 18px;
    border-radius: 999px;

    background-color: #94adc2;

    transition: 
        background-color 0.2s ease,
        opacity 0.2s ease;
}

.nav-links a:hover {
    background-color: #ebebeb;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 80vh;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    display: block;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 32px;
}

.intro {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 550px;
}

/* ABOUT PAGE */

.about-page {
    max-width: 760px;
}

.about-content h1 {
    font-size: 2.4rem;
    margin-bottom: 48px;
}

.about-content p {
    font-size: 1.08rem;
    line-height: 1.95;
    margin-bottom: 32px;
    color: #333;
}

.about-links {
    margin-top: 48px;
}

.about-links a {
    color: #4c6475;
    text-decoration: none;
    border-bottom: 1px solid #4c6475;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.about-links a:hover {
    opacity: 0.65;
}

/* TESTIMONIALS PAGE */

.testimonials-page {
    max-width: 820px;
}

.testimonials-content h1 {
    font-size: 2.4rem;
    margin-bottom: 56px;
}

.testimonial {
    margin-bottom: 72px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e7e7e7;
}

.testimonial p {
    font-size: 1.08rem;
    line-height: 1.95;
    color: #333;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
}

/* CONTACT PAGE */

.contact-page {
    max-width: 760px;
}

.contact-content h1 {
    font-size: 2.4rem;
    margin-bottom: 32px;
}

.contact-intro {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 48px;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;

    padding: 16px;
    margin-bottom: 32px;

    border: 1px solid #d9d9d9;
    border-radius: 8px;

    background-color: white;
    color: #222;

    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4c6475;
}

.contact-form button {
    width: fit-content;

    padding: 14px 24px;

    border: none;
    border-radius: 8px;

    background-color: #4c6475;
    color: white;

    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;

    cursor: pointer;

    transition: opacity 0.2s ease;
}

.contact-form button:hover {
    opacity: 0.85;
}

/* MOBILE LAYOUT */

@media (max-width: 900px) {

    .site-header {
        padding-top: 28px;
        padding-bottom: 8px;
    }

    .container {
        padding-top: 16px;
    }

    .nav {
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
    gap: 12px;
    justify-content: center;
}
.nav-links a {
    padding: 8px 14px;
    font-size: 1rem;
}
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        gap: 28px;
        padding-top: 10px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        max-width: 280px;
    }

    .intro {
        margin: 0 auto;
    }

    h1 {
        font-size: 2.3rem;
    }
}
.home-summary {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.home-summary p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #333;
}
.professional-info {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e7e7e7;
}

.professional-info p {
    color: #666;
    font-size: 0.95rem;
}