* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #6e6e6e;
    overflow-x: hidden;
}

.lets-talk-header {
    min-height: 100vh;
    background: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)), url('../public/landingpage.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 30px 60px;
}

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 30px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
}

.logo {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: #6e6e6e;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background 0.3s;
}

nav a:hover {
    background: #f0f0f0;
}

.nav-cta {
    border: 1.5px solid #000000;
    border-radius: 999px;
    padding: 10px 20px;
}

.lets-talk-hero {
    max-width: 760px;
    margin: 80px auto 0;
    text-align: center;
}

.lets-talk-kicker {
    color: #499c9c;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lets-talk-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #6e6e6e;
    margin: 0 0 16px;
}

.lets-talk-desc {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 28px;
    max-width: 700px;
}

.lets-talk-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lets-talk-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.lets-talk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.lets-talk-btn-primary {
    background: #499c9c;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(73, 156, 156, 0.2);
}

.lets-talk-btn-secondary {
    background: #ffffff;
    color: #499c9c;
    border: 1.5px solid #499c9c;
}

.about-side-image {
    width: min(100%, 720px);
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    flex: 1 1 360px;
    max-width: 100%;
    transform: translateX(-70px);
    margin-left: auto;
}

.about-intro {
    margin: 0 0 0 48px;
    text-align: left;
    flex: 1 1 520px;
}

.about-contact-image {
    width: min(100%, 420px);
    height: auto;
    display: block;
    margin: 20px 0 0 48px;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lets-talk-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: -20px auto 60px;
    padding: 0 30px;
}

.lets-talk-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.lets-talk-card h2 {
    color: #499c9c;
    margin-top: 0;
    margin-bottom: 12px;
}

.lets-talk-card p,
.lets-talk-card li {
    line-height: 1.7;
}

.lets-talk-card ul {
    padding-left: 20px;
    margin: 0;
}

.site-footer {
    background: #499c9c;
    color: #ffffff;
    padding: 96px 30px 36px;
    text-align: center;
    width: 100%;
    margin-top: 60px;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-heading,
.footer-desc,
.footer-trust {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 520px;
}

.footer-heading {
    font-weight: 700;
}

.footer-desc,
.footer-trust {
    font-weight: 400;
}

.footer-schedule-btn {
    display: inline-block;
    background: #ffffff;
    color: #499c9c;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
}

.footer-copy {
    margin: 16px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    font-size: 13px;
    opacity: 0.9;
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 12px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #6e6e6e;
    position: relative;
    transition: transform 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #6e6e6e;
    transition: transform 0.25s ease;
}

.nav-toggle span::before {
    top: -7px;
}

.nav-toggle span::after {
    top: 7px;
}

@media (max-width: 1024px) {
    .site-navbar {
        padding: 12px 20px;
    }

    nav {
        gap: 12px;
        justify-content: center;
    }

    nav a {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-navbar {
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 12px 20px;
    }

    .site-navbar nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 16px 20px 20px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .site-navbar.nav-open nav {
        display: flex;
    }

    .site-navbar nav a {
        width: 100%;
        padding: 12px 0;
        border-radius: 0;
    }

    .site-navbar.nav-open .nav-toggle span {
        background: transparent;
    }

    .site-navbar.nav-open .nav-toggle span::before {
        transform: translateY(7px) rotate(45deg);
    }

    .site-navbar.nav-open .nav-toggle span::after {
        transform: translateY(-7px) rotate(-45deg);
    }

    .about-header {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .about-intro-layout {
        flex-direction: column;
        margin: 20px 16px 0;
        gap: 24px;
    }

    .about-intro {
        margin: 0;
    }

    .about-side-image {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
        transform: none;
        margin: 0 auto;
    }

    .about-contact-image {
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }

    .lets-talk-content {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .lets-talk-hero h1 {
        font-size: clamp(28px, 5vw, 42px);
    }

    .lets-talk-header {
        padding: 80px 16px 40px;
        min-height: auto;
    }

    .footer-schedule-btn {
        width: 100%;
        text-align: center;
        padding: 14px 18px;
    }

    .site-footer {
        padding: 48px 16px 36px;
    }
}
