/* agent_signup.css */

/* General Styles */
body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0; 
    right: 0; 
    bottom: 0;
    z-index: -1;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.4)
    ),
    url("/static/web_service/images/background/landy_agent_signup.1c8c813878cb.jpg") center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: #fff;
    background-color: #34d15e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

/* Value Proposition Section */
.value-proposition-section {
    padding: 125px 65px 140px;
    text-align: center;
    background-color: #ffffff;
}

.value-proposition-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.benefit-item {
    max-width: 300px;
    text-align: center;
}

.benefit-item i {
    font-size: 3rem;
    color: #34d15e;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f0f0f0;
    padding: 125px 65px 140px;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.step-item {
    max-width: 250px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #34d15e;
    color: #fff;
    font-size: 2rem;
    line-height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 1rem;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    padding: 150px 65px 165px;
    text-align: center;
    background-color: #f9f9f9;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url("/static/web_service/images/background/agents_love_landian_bg.26fe65be9ee4.jpg")
                no-repeat center/cover;
    color: #fff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-item {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    color: #fff;
}

.testimonial-item p {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.testimonial-item h4 {
    font-size: 1.1rem;
    color: #34d15e;
}

.testimonials-section .section-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.testimonials-section .section-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
    padding: 125px 65px 140px;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

/* Call-to-Action Section */
.call-to-action-section {
    position: relative;
    color: #fff;
    padding: 170px 65px 100px;
    overflow: hidden;
    min-height: 650px;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0px;
    left: 0; 
    right: 0; 
    bottom: -200px;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.4),
                                rgba(0, 0, 0, 0.4)),
                url("/static/web_service/images/background/call_to_action_bg.2ad94a3337d1.jpg") 
                center/cover no-repeat;
}

.call-to-action-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.call-to-action-section .btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content {
        padding: 20px 40px;
    }

    .value-proposition-section h2,
    .how-it-works-section h2,
    .testimonials-section h2,
    .faq-section h2,
    .call-to-action-section h2 {
        font-size: 2rem;
    }

    .benefit-item,
    .step-item {
        max-width: 100%;
    }

    .benefits-container,
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        padding: 12px;
    }

    .call-to-action-section {
        min-height: 400px;
        padding: 100px 45px;
    }

    .call-to-action-section .btn {
        margin-top: 80px !important;
    }
}

.hero-content h1,
.hero-content p {
    color: #fff;
}

.hero-content .btn,
.call-to-action-section .btn {
    margin-top: 20px;
}

/* Updated Promo Section Styles */
.exciting-promo {
    padding: 120px 65px;
    position: relative;
    overflow: hidden;
    background-color: rgba(50, 209, 94, 0.1);
    color: #333;
    text-align: center;
}

.exciting-promo h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Container for side-by-side layout */
.exciting-promo .promo-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Shared styles for both promo boxes */
.exciting-promo .promo-box {
    flex: 1 1 45%;
    min-width: 300px;
    background-color: transparent;
    color: #333;
    border-radius: 10px;
    padding: 3rem;
    text-align: left;
    backdrop-filter: blur(4px);
}

/* Heading and paragraph styling within promo box */
.exciting-promo .promo-box h3 {
    font-size: 1.8rem;
    color: #34d15e;
    margin-bottom: 20px;
}

.exciting-promo .promo-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}



/* Responsive Behavior */
@media (max-width: 768px) {
    .exciting-promo {
        padding: 60px 20px;
    }
    .exciting-promo .promo-content {
        flex-direction: column;
    }
    .exciting-promo .promo-box {
        flex: 1 1 auto;
        margin-bottom: 20px;
    }
}
