* {
    box-sizing: border-box;
}

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: 0 0 720px;
    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;
}

.about-contact-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.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;
}

@media (max-width: 760px) {
    .about-side-image {
        width: min(100%, 420px);
        flex: 0 0 420px;
        transform: none;
        margin: 0 auto;
    }

    .about-intro {
        margin: 0;
    }

    .about-contact-image {
        width: min(100%, 300px);
        margin: 20px auto 0;
    }

    .lets-talk-content {
        grid-template-columns: 1fr;
    }

    .lets-talk-hero h1 {
        font-size: 32px;
    }
}
