/* Basic Reset & Defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* Light background for sections */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a2b4d; /* Dark blue for headings */
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #007bff; /* Standard link blue */
}

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

section {
    padding: 60px 0;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Adjust if nav links are added */
}

.logo {
    height: 40px; /* Adjust size as needed */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 43, 77, 0.7), rgba(26, 43, 77, 0.7)), url('../frontend/public/backgrounds/1.webp') no-repeat center center/cover; /* Placeholder background */
    color: #fff;
    text-align: center;
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    margin-bottom: 0.5rem;
}

.hero-content .subheadline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ff6f61; /* Coral/Orange color for CTA */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e65a50; /* Darker shade on hover */
}

/* Key Benefits Section */
.benefits-section {
    background-color: #fff;
}

.benefits-section .intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #555;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-item .icon {
    font-size: 2.5rem; /* Adjust icon size */
    margin-bottom: 1rem;
    color: #007bff; /* Example color - Adjust as needed */
}

.benefit-item h3 {
    color: #1a2b4d;
}

/* How It Works Section */
.how-it-works-section {
     background-color: #eef2f9; /* Slightly different background */
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
}

.step {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.step .icon {
    font-size: 2.2rem; /* Adjust icon size */
    margin-bottom: 1rem;
    color: #ff6f61; /* Example color - Adjust as needed */
}

.step h3 {
    color: #1a2b4d;
}

/* Video Demo Section */
.demo-section {
    text-align: center;
    background-color: #fff;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 2rem auto 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f0f4f8; /* Light grey-blue background */
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    max-width: 700px;
    margin: 0 auto 1rem auto;
    border-left: 4px solid #ff6f61; /* Accent color border */
    padding-left: 15px;
    text-align: left;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #555;
    display: block;
    text-align: right;
     max-width: 700px;
     margin: 0 auto;
}

/* Call to Action Section */
.cta-section {
    background-color: #1a2b4d; /* Dark blue background */
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
}

.lead-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #ff6f61; /* Use consistent CTA color */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #e65a50;
}

.privacy-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
    text-align: center;
}

.form-confirmation {
    margin-top: 1.5rem;
    padding: 15px;
    background-color: #d4edda; /* Success green */
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
}

.site-footer a:hover {
    color: #ff6f61;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 80px 0;
        min-height: 50vh;
    }

    .benefits-grid {
        grid-template-columns: 1fr; /* Stack benefits */
        gap: 25px;
    }

    .steps-container {
        flex-direction: column; /* Stack steps */
        gap: 20px;
    }

    .lead-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    .hero-content .subheadline {
        font-size: 1rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
    section {
        padding: 40px 0;
    }
    .lead-form {
        max-width: 100%;
    }
}