/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Bebas Neue', cursive;
    line-height: 1.4;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Explicit H1 font-size declarations to fix Lighthouse warning */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

section h1,
article h1,
nav h1,
aside h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Ultra-specific H1 targeting for Lighthouse */
section.hero h1.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
}

/* Catch-all for any H1 in sections */
section h1[class] {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
}

/* Ensure hero title specifically has explicit font-size */
.hero-title,
h1.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
}

/* Utility Classes */
.section-padding {
    padding: 5rem 0;
}

.section-padding-lg {
    padding: 6rem 0;
}

.section-padding-sm {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-icon {
    width: 1em;
    height: 1em;
    color: #000000;
    flex-shrink: 0;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ff9900;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 153, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav {
    width: 100%;
}

.nav-container {
    max-width: none;
    margin: 0;
    padding: 0 4rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-logo {
    margin-left: 0;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link:hover img {
    filter: brightness(0) invert(1);
}

.logo-link:focus {
    outline: none;
}

.nav-logo img {
    width: 180px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 90px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: calc(100vh - 90px);
}

.hero-text {
    max-width: 600px;
    text-align: right;
    color: #fff;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: #ffeba8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* About Section */
.about {
    background-color: #ff9900;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-paragraph {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    line-height: 1.6;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    aspect-ratio: 3/4;
    min-height: 400px;
    max-width: 100%;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Quote Section */
.quote-section {
    background-color: #000000;
    position: relative;
}

.quote-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.quote-image {
    flex-shrink: 0;
    width: 240px;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quote-text {
    flex: 1;
    color: #fff;
}

.quote {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 1.5rem 0;
    letter-spacing: 1px;
    position: relative;
}

.quote-mark {
    font-size: 1.5em;
    font-style: normal;
    color: #ff9900;
    font-weight: 700;
}

.quote-attribution {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    font-style: normal;
    color: #ff9900;
    letter-spacing: 1px;
    display: block;
}

/* Sessions Section */
.sessions {
    background-color: #ff9900;
}


.sessions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.session-card {
    background-color: #dcdcdc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.session-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.session-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.session-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.session-card:hover .session-image img {
    transform: scale(1.05);
}

.session-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.session-age {
    font-size: 2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
}

.session-description {
    font-size: 1.125rem;
    line-height: 1.4;
    color: #555;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    letter-spacing: 0.5px;
}

.session-cta {
    display: inline-block;
    background-color: #000000;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.session-cta:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.session-cta:active {
    transform: translateY(0);
}

/* Newsletter Section */
.newsletter {
    background-color: #000000;
}

.newsletter-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.newsletter-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.newsletter-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-content {
    text-align: center;
    color: #fff;
}

.newsletter-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.newsletter-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    color: #ffeba8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.newsletter-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.newsletter-input:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: #666;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.newsletter-cta {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #ff9900;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    white-space: nowrap;
}

.newsletter-cta:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.newsletter-cta:active {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    background-color: #ff9900;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}


.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #dcdcdc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-form {
    width: 100%;
}

.form-field {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.4;
}

.form-error {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-error.show {
    opacity: 1;
}

.contact-submit {
    width: auto;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: 0;
}

.contact-submit:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-submit:active {
    transform: translateY(0);
}

.form-legal {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.contact-info {
    color: #fff;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #fff;
}

.info-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    color: #000000;
}

.info-text {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #000000;
}

.sterling-quote {
    background-color: rgba(0, 0, 0, 0.1);
    border-left: 4px solid #000000;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.5;
    color: #000000;
}

.sterling-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    color: #000000;
    letter-spacing: 0.5px;
}

.office-hours {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.office-hours h4 {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.office-hours p {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    color: #000000;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
}

.contact-link:hover {
    color: #fff;
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.08);
}

.contact-link .contact-icon {
    width: 24px;
    height: 24px;
    color: #000000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-icon {
    color: #ffffff;
    transform: scale(1.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 2rem 0 0;
    }
    
    .nav-logo img {
        width: 80px;
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        transition: left 0.3s ease;
        gap: 3rem;
    }
    
    .nav-menu .nav-link {
        color: #ffffff;
        font-size: 1.5rem;
        font-weight: 400;
        letter-spacing: 1px;
    }
    
    .nav-menu .nav-link:hover {
        color: #f0f0f0;
    }
    
    .nav-menu .nav-link::after {
        background-color: #ffffff;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 0 1rem;
        justify-content: center;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1.25rem 3rem;
        font-size: 1.375rem;
        margin-top: 2.5rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 3rem 0;
    }
    
    .about-container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-title {
        font-size: clamp(2.75rem, 8vw, 3.25rem);
        margin-bottom: 1rem;
        color: #fff;
        font-weight: 400;
        letter-spacing: 1.5px;
        gap: 1rem;
    }
    
    .about-subtitle {
        font-size: clamp(1.375rem, 4vw, 1.75rem);
        margin-bottom: 2.5rem;
        color: #000000;
        font-weight: 400;
        letter-spacing: 1.5px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-text {
        text-align: left;
        width: 100%;
    }
    
    .about-paragraph {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
        line-height: 1.7;
        letter-spacing: 0.5px;
    }
    
    .about-image {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        justify-self: center;
    }
    
    .about-image img {
        min-height: 350px;
        max-height: 450px;
        width: 100%;
    }

    /* Quote Section Mobile */
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-container {
        padding: 0 1rem;
    }
    
    .quote-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .quote-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .quote {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
        text-align: center;
        margin-bottom: 1.25rem;
    }
    
    .quote-attribution {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        text-align: center;
    }

    /* Sessions Section Mobile */
    .sessions {
        padding: 3rem 0;
    }
    
    .sessions-container {
        padding: 0 1rem;
    }
    
    .sessions-title {
        font-size: clamp(2.75rem, 8vw, 3.25rem);
        margin-bottom: 1rem;
        color: #fff;
        font-weight: 400;
        letter-spacing: 1.5px;
        gap: 1rem;
    }
    
    .sessions-subtitle {
        font-size: clamp(1.375rem, 4vw, 1.75rem);
        margin-bottom: 2.5rem;
        color: #000000;
        font-weight: 400;
        letter-spacing: 1.5px;
    }
    
    .sessions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .session-card {
        min-height: 400px;
    }
    
    .session-content {
        padding: 2rem;
    }
    
    .session-age {
        font-size: 2rem;
        color: #333;
        font-weight: 400;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }
    
    .session-description {
        font-size: 1.25rem;
        color: #555;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        letter-spacing: 0.5px;
    }
    
    .session-description:last-of-type {
        margin-bottom: 2.75rem;
    }
    
    .session-cta {
        padding: 1.25rem 3rem;
        font-size: 1.25rem;
        font-weight: 400;
        letter-spacing: 1px;
        margin-top: auto;
    }
    
    /* Newsletter Section Mobile */
    .newsletter {
        padding: 2rem 0;
    }
    
    .newsletter-section {
        height: 350px;
    }
    
    .newsletter-container {
        padding: 0 1rem;
    }
    
    .newsletter-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .newsletter-subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 2rem;
        letter-spacing: 0.5px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .newsletter-input {
        min-width: 280px;
        max-width: 400px;
        width: auto;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .newsletter-cta {
        width: auto;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-title {
        font-size: clamp(2.75rem, 8vw, 3.25rem);
        letter-spacing: 1.5px;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-subtitle {
        font-size: clamp(1.375rem, 4vw, 1.75rem);
        margin-bottom: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-info-section {
        margin-top: 2rem;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .info-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .info-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .info-text {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .sterling-quote {
        padding: 1.25rem 1.5rem;
        margin: 2rem 0;
        font-size: 1.125rem;
        line-height: 1.6;
    }
    
    .sterling-quote cite {
        font-size: 0.9rem;
    }
    
    .office-hours {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .office-hours h4 {
        font-size: 1.25rem;
    }
    
    .office-hours p {
        font-size: 1.25rem;
    }
    
    .contact-links {
        gap: 1.25rem;
    }
    
    .contact-link {
        font-size: 1.25rem;
        padding: 0.875rem;
        justify-content: flex-start;
    }
    
    .contact-link .contact-icon {
        width: 22px;
        height: 22px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2.5rem 0 1.25rem 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-bottom: 1.5rem;
    }
    
    .footer-logo img {
        width: 160px;
        height: 53px;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-legal {
        padding-top: 1.25rem;
    }
    
    .footer-social {
        gap: 1.5rem;
        padding: 1.25rem 0;
    }
    
    .footer-social-icon {
        width: 26px;
        height: 26px;
    }
    
    .footer-legal {
        padding-top: 1rem;
    }
    
    .footer-legal p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem 0 0;
    }
    
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .cta-button {
        padding: 1.125rem 2.5rem;
        font-size: 1.25rem;
        margin-top: 2rem;
    }
    
    /* About Section Small Mobile */
    .about {
        padding: 2.5rem 0;
    }
    
    .about-container {
        padding: 0 0.75rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-title {
        font-size: clamp(2.25rem, 9vw, 2.75rem);
        margin-bottom: 0.75rem;
        color: #fff;
        font-weight: 400;
        letter-spacing: 1px;
        gap: 0.75rem;
    }
    
    .about-subtitle {
        font-size: clamp(1.125rem, 5vw, 1.375rem);
        margin-bottom: 2rem;
        color: #000000;
        font-weight: 400;
        letter-spacing: 1px;
    }
    
    .about-content {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-text {
        text-align: left;
        width: 100%;
    }
    
    .about-paragraph {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
        line-height: 1.6;
        letter-spacing: 0.5px;
    }
    
    .about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        justify-self: center;
    }
    
    .about-image img {
        min-height: 320px;
        max-height: 400px;
        width: 100%;
    }

    /* Quote Section Small Mobile */
    .quote-section {
        padding: 2.5rem 0;
    }
    
    .quote-container {
        padding: 0 0.75rem;
    }
    
    .quote-content {
        gap: 1.5rem;
    }
    
    .quote-image {
        width: 180px;
        height: 180px;
    }
    
    .quote {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
        margin-bottom: 1rem;
    }
    
    .quote-attribution {
        font-size: clamp(0.9rem, 3vw, 1.125rem);
    }

    /* Sessions Section Small Mobile */
    .sessions {
        padding: 2.5rem 0;
    }
    
    .sessions-container {
        padding: 0 0.75rem;
    }
    
    .sessions-title {
        font-size: clamp(2.25rem, 9vw, 2.75rem);
        margin-bottom: 0.75rem;
        color: #fff;
        font-weight: 400;
        letter-spacing: 1px;
        gap: 0.75rem;
    }
    
    .sessions-subtitle {
        font-size: clamp(1.125rem, 5vw, 1.375rem);
        margin-bottom: 2rem;
        color: #000000;
        font-weight: 400;
        letter-spacing: 1px;
    }
    
    .sessions-grid {
        gap: 1.5rem;
    }
    
    .session-card {
        min-height: 350px;
    }
    
    .session-content {
        padding: 1.5rem;
    }
    
    .session-age {
        font-size: 1.75rem;
        color: #333;
        font-weight: 400;
        letter-spacing: 1px;
        margin-bottom: 1.25rem;
    }
    
    .session-description {
        font-size: 1.125rem;
        color: #555;
        margin-bottom: 1.25rem;
        line-height: 1.6;
        letter-spacing: 0.5px;
    }
    
    .session-description:last-of-type {
        margin-bottom: 2.25rem;
    }
    
    .session-cta {
        padding: 1.125rem 2.75rem;
        font-size: 1.125rem;
        font-weight: 400;
        letter-spacing: 1px;
        margin-top: auto;
    }
    
    /* Newsletter Section Small Mobile */
    .newsletter {
        padding: 1.5rem 0;
    }
    
    .newsletter-section {
        height: 320px;
    }
    
    .newsletter-container {
        padding: 0 0.75rem;
    }
    
    .newsletter-title {
        font-size: clamp(1.75rem, 7vw, 2rem);
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    
    .newsletter-subtitle {
        font-size: clamp(0.875rem, 4vw, 1rem);
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .newsletter-input {
        min-width: 260px;
        max-width: 320px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .newsletter-cta {
        width: auto;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Contact Section Small Mobile */
    .contact {
        padding: 2.5rem 0;
    }
    
    .contact-container {
        padding: 0 0.75rem;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-title {
        font-size: clamp(2.25rem, 9vw, 2.75rem);
        letter-spacing: 1px;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .contact-subtitle {
        font-size: clamp(1.125rem, 5vw, 1.375rem);
        margin-bottom: 0.75rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-submit {
        width: auto;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .contact-info-section {
        margin-top: 1.5rem;
    }
    
    .info-title {
        font-size: 1.75rem;
    }
    
    .info-subtitle {
        font-size: 1.125rem;
    }
    
    .info-text {
        font-size: 1.125rem;
        line-height: 1.6;
    }
    
    .sterling-quote {
        padding: 1rem 1.25rem;
        margin: 1.5rem 0;
        font-size: 1.05rem;
        line-height: 1.5;
    }
    
    .sterling-quote cite {
        font-size: 0.85rem;
    }
    
    .office-hours {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .office-hours h4 {
        font-size: 1.125rem;
    }
    
    .office-hours p {
        font-size: 1.125rem;
    }
    
    .contact-links {
        gap: 1rem;
    }
    
    .contact-link {
        font-size: 1.125rem;
        padding: 0.75rem;
    }
    
    .contact-link .contact-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-container {
        padding: 0 0.75rem;
    }
    
    .footer-content {
        gap: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .footer-logo img {
        width: 140px;
        height: 47px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        padding-top: 1rem;
    }
    
    .footer-social {
        gap: 1.25rem;
        padding: 1rem 0;
    }
    
    .footer-social-icon {
        width: 24px;
        height: 24px;
    }
    
    .footer-legal {
        padding-top: 0.75rem;
    }
    
    .footer-legal p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 3rem 0 1.5rem 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-link:hover img {
    filter: brightness(0) invert(1);
}

.footer-logo-link:focus {
    outline: none;
}

.footer-logo img {
    width: 200px;
    height: 67px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.footer-link:hover {
    color: #ff9900;
    transform: translateY(-1px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff9900;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-social-link:hover {
    transform: translateY(-2px);
}

.footer-social-icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-social-link:hover .footer-social-icon {
    color: #ff9900;
}

.footer-legal {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    background-color: #fff;
    padding-top: 90px;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ff9900;
}

.legal-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.legal-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: #666;
    margin: 0;
    letter-spacing: 1px;
}

.legal-content {
    line-height: 1.7;
    color: #333;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: #333;
    margin: 2rem 0 1rem 0;
    letter-spacing: 0.5px;
}

.legal-section p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
    letter-spacing: 0.3px;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: #444;
    letter-spacing: 0.3px;
}

.legal-section li:last-child {
    margin-bottom: 0;
}

/* Legal Pages Mobile */
@media (max-width: 768px) {
    .legal-container {
        padding: 2rem 1rem;
    }
    
    .legal-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 1.5rem 0.75rem;
    }
    
    .legal-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .legal-section {
        margin-bottom: 1.5rem;
    }
    
    .legal-section ul {
        padding-left: 1rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.cta-button:focus,
.nav-toggle:focus {
    outline: none;
}

/* Print styles */
@media print {
    .header {
        position: static;
        box-shadow: none;
    }
    
    .hero {
        margin-top: 0;
        min-height: auto;
        page-break-inside: avoid;
    }
}

.footer-credit {
    text-align: center;
    font-size: 1.3rem; /* Bigger font size */
    margin-top: 30px; /* More space from the divider */
    margin-bottom: 15px;
    padding-top: 15px; /* Extra padding for breathing room */
    color: #fff;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.footer-credit a {
    color: #ff9900; /* Match footer link orange */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #e68a00; /* Slightly darker orange on hover */
    text-decoration: underline;
}