/* --- General Setup & Variables --- */
:root {
    --primary-font: 'Open Sans', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    --dark-blue: #0a192f;
    --light-slate: #ccd6f6;
    --slate: #8892b0;
    --gold: #FFD700;
    --yellow: #FFFF00; /* Added for highlight */
    --white: #ffffff;
    --background-light: #f8f9fa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    background-color: var(--white);
    color: var(--slate);
    line-height: 1.6;
    font-size: 18px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .main-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

/* NEW: Styles to replace your inline styles */
.headline-main {
    font-size: 0.8em; /* Makes this part slightly smaller */
}
.headline-highlight {
    color: var(--yellow);
}
/* END NEW */


.hero .sub-headline {
    font-size: 1.25rem;
    color: var(--light-slate);
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-blue);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-form-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-form-container input {
    width: 300px;
    max-width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--slate);
    font-size: 1rem;
    font-family: var(--primary-font);
}

.hero-form-container .cta-button {
    margin: 0;
}

/* --- Intro System Section --- */
.intro-system {
    background-color: var(--white);
    text-align: center;
}
.system-intro-text {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 20px auto;
    color: #333;
}

/* --- Benefits Section --- */
.benefits {
    background-color: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
}

/* --- Image Showcase Section --- */
.image-showcase {
    background-color: var(--background-light);
    padding: 60px 0;
}
img.proof-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Testimonials Section --- */
.testimonials {
    /* Kept default white background for contrast */
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial {
    background: var(--background-light);
    padding: 30px;
    border-left: 5px solid var(--gold);
    border-radius: 5px;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.testimonial cite {
    font-weight: 600;
    color: var(--dark-blue);
}

/* --- Form Wrapper Section --- */
.form-wrapper-section {
    background-color: var(--dark-blue);
    color: var(--light-slate);
    text-align: center;
    padding: 80px 0;
}
.form-wrapper-section .section-title {
    color: var(--white);
}
.cta-subtext {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.lead-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.lead-form input {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--slate);
    font-size: 1rem;
    font-family: var(--primary-font);
}

#form-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}
#form-message.success {
    background-color: #d4edda;
    color: #155724;
}
#form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.lead-form .cta-button {
    width: 100%;
    font-size: 1.2rem;
}

/* --- Booking Section --- */
.booking-cta {
    background-color: var(--dark-blue);
    color: var(--light-slate);
    text-align: center;
    padding: 80px 0;
}
.booking-cta .section-title {
    color: var(--white);
}

/* --- Footer --- */
.site-footer {
    background: #061221;
    color: var(--slate);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .hero .main-headline {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .hero-form-container {
        flex-direction: column;
        width: 100%;
    }
    .hero-form-container input, .hero-form-container button {
        width: 100%;
    }
}