/* Base Styles */
:root {
    --primary-color: #ffc107;
    --primary-dark: #e6a800;
    --secondary-color: #111;
    --secondary-light: #333;
    --white: #fff;
    --light-grey: #f5f5f5;
    --dark-grey: #333;
    --text-color: #333;
    --text-light: #777;

    .audience-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    /* How it Works Section */
    .steps-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .step {
        text-align: center;
        background-color: rgba(255, 255, 255, 0.05);
        padding: 2rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .step:hover {
        transform: translateY(-10px);
    }

    .step-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        font-size: 1.5rem;
        font-weight: 700;
        border-radius: 50%;
        margin: 0 auto 1.5rem;
    }

    .step h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .step p {
        color: var(--white);
        opacity: 0.8;
    }

    /* Testimonials Section */
    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonial {
        background-color: var(--light-grey);
        border-left: 4px solid var(--primary-color);
        padding: 2rem;
    }

    .testimonial-content p {
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial-author h4 {
        margin-bottom: 0.2rem;
    }

    .testimonial-author p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-light);
    }

    /* Pricing Section */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .pricing-card {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 3rem 2rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .pricing-card.featured {
        background-color: rgba(255, 193, 7, 0.1);
        border: 1px solid var(--primary-color);
        transform: scale(1.05);
        position: relative;
        z-index: 1;
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

    .pricing-header h3 {
        color: var(--primary-color);
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .price {
        font-size: 3rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 2rem;
    }

    .price span {
        font-size: 1rem;
        font-weight: 400;
        opacity: 0.7;
    }

    .pricing-features {
        margin-bottom: 2rem;
    }

    .pricing-features ul li {
        margin-bottom: 1rem;
        color: var(--white);
        opacity: 0.8;
    }

    /* FAQ Section */
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 0;
        cursor: pointer;
    }

    .faq-question h3 {
        margin: 0;
        font-size: 1.2rem;
    }

    .faq-toggle {
        font-size: 1.5rem;
        color: var(--primary-color);
    }

    .faq-answer {
        display: none;
        padding-bottom: 1.5rem;
    }

    .faq-answer p {
        margin: 0;
    }



    /* Contact Section */
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 3rem;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .info-item h3 {
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .info-item p {
        color: var(--white);
        opacity: 0.8;
    }

    .contact-form {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--white);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
    }

    .map-container {
        width: 100%;
        height: 450px;
        margin-top: 3rem;
    }

    /* Footer */
    .footer {
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 5rem 0 2rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
        margin-bottom: 3rem;
    }

    .footer-logo h2 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .footer-logo p {
        opacity: 0.8;
    }

    .footer-nav h3,
    .footer-legal h3 {
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }

    .footer-nav ul li,
    .footer-legal ul li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: var(--white);
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: var(--primary-color);
        opacity: 1;
    }

    .copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .copyright p {
        opacity: 0.6;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .features-grid,
        .pricing-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .steps-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .header-content {
            flex-direction: column;
            gap: 1.5rem;
        }

        .main-nav ul {
            gap: 1rem;
        }

        .hero h2 {
            font-size: 2.5rem;
        }

        .about-content,
        .audience-content,
        .contact-content,
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .testimonials-slider {
            grid-template-columns: 1fr;
        }

        .contact-info {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .main-nav ul {
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }

        .features-grid,
        .pricing-grid,
        .steps-container {
            grid-template-columns: 1fr;
        }

        .pricing-card.featured {
            transform: scale(1);
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px);
        }

        .section-title {
            font-size: 2rem;
        }
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

.bg-dark {
    background-color: var(--secondary-color);
    color: var(--white);
}

.bg-dark .section-title {
    color: var(--white);
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Header Styles */
.header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1554284126-aa88f22d8b74?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 1.5rem 0;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero {
    text-align: center;
    padding: 8rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--white);
    opacity: 0.8;
}

/* Target Audience Section */
.audience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.audience-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.audience-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.audience-list li::before {
    content: '✦';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

html {
    scroll-behavior: smooth;
}