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

body {
    font-family: sans-serif; /* Choose a professional font */
    line-height: 1.6;
    color: #333; /* Default text color */
    background-color: #f4f4f4; /* Light background */
}

.container {
    width: 90%;
    max-width: 1200px; /* Max width for content */
    margin: 0 auto; /* Center the container */
    padding: 20px 0; /* Vertical padding */
}

/* === Header / Hero Section === */
.hero-section {
    background-color: #007bff; /* Example blue background */
    color: #fff; /* White text */
    padding: 80px 0; /* Large padding for prominence */
    text-align: center;
    /* Optional: Add a background image */
    /* background-image: url('path/to/your/image.jpg'); */
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #28a745; /* Example green button */
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.large-cta {
    font-size: 1.5em;
    padding: 20px 40px;
}

#spots-left {
    display: block;
    font-size: 0.8em;
    margin-top: 5px;
}

/* === Section Styling === */
section {
    padding: 60px 0; /* Padding for all content sections */
}

.problem-intro-section {
     background-color: #e9ecef; /* Light grey background */
     text-align: center;
}


.categories-section {
    background-color: #fff; /* White background */
}

.requirements-section {
     background-color: #f8f9fa; /* Slightly darker grey */
}

.why-offer-section {
     background-color: #e9ecef;
}

.how-it-works-section {
    background-color: #fff;
}

.testimonials-section {
     background-color: #f8f9fa;
}

.faq-section {
     background-color: #e9ecef;
}

.final-cta-section {
     background-color: #007bff; /* Match header or use another prominent color */
     color: #fff;
     text-align: center;
}


h2 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    color: #333; /* Default heading color */
}

.final-cta-section h2 {
    color: #fff; /* White heading in final CTA */
}


/* === Grid Layouts === */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between grid items */
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* === Card Styles === */
.category-card, .requirement-block, .testimonial-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-card .icon {
    font-size: 3em; /* Size of the icon */
    text-align: center;
    margin-bottom: 15px;
    color: #007bff; /* Icon color */
}

.category-card h3, .requirement-block h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #0056b3; /* Slightly darker blue */
}

/* === Lists === */
ul {
    list-style: none; /* Remove default list style */
}

ul.benefits-list li, ul.steps-list li {
    background-color: #e9ecef; /* Light background for list items */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #007bff; /* Accent border */
}

ul.benefits-list li strong, ul.steps-list li strong {
    color: #0056b3; /* Highlight strong text */
}


.requirement-block ul {
    list-style: disc; /* Add dots back for requirements */
    margin-left: 20px;
    margin-top: 15px;
}

/* === Testimonials === */
.testimonial-grid {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    font-style: italic;
    border-left: 5px solid #28a745; /* Green accent */
}

.testimonial-author {
    margin-top: 10px;
    text-align: right;
    font-style: normal;
    font-weight: bold;
    color: #555;
}

/* === FAQ === */
.faq-item {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    margin-bottom: 10px;
    color: #0056b3;
    font-size: 1.1em;
}

/* === Other Styles === */
.center-text {
    text-align: center;
    margin-top: 30px;
}

.note {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

.highlight-text {
    font-weight: bold;
    color: #dc3545; /* Example danger/highlight color */
}

.large-text {
    font-size: 1.2em;
}


/* === Footer === */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.8em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }

     .large-cta {
        font-size: 1.2em;
        padding: 15px 30px;
    }

    h2 {
        font-size: 1.5em;
    }

    .container {
        width: 95%;
    }

    .grid-3, .requirements-grid, .testimonial-grid {
         grid-template-columns: 1fr; /* Stack columns on small screens */
    }

    .category-card, .requirement-block, .testimonial-card, .faq-item {
        padding: 15px;
    }
}