/* Landing page and shared styles */

body {
    background-color: #202020;
}

.main-title {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    margin-top: 100px;
    font-size: 50px;
    color: #FFFFFF;
}

.main-subtitle {
    color: #C7C7C7;
    text-align: center;
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
}

.call-action-button {
    background-image: linear-gradient(to right, #FF3131 0%, #FF5F5F 50%, #FF3131 100%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    margin-top: 50px;
    background-size: 200% auto;
}

.call-action-button:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.hero {
    width: 100%;
}
.infographic {
    display: block;
    margin: 40px auto 0;
    width: 70%;
    border-radius: 20px; /* Added for rounded corners */
}

img.infographic {
    max-width: 100%;
    height: auto;
    margin-bottom: 100px;
}

.benefit {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    color: #FFFFFF;
    width: 70%;
    flex-wrap: wrap;
    background-color: #2A2A2A;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.benefit:first-of-type {
    margin-top: 0;
}

.benefit-text-content {
    flex: 1;
    font-family: 'Roboto', sans-serif;
    margin: 20px;
    max-height: 80%;
    min-width: 300px;
}

.benefit-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFFFFF;
    word-break: break-word;
}

.benefit-sentence {
    font-size: 20px;
    line-height: 2.1;
    color: #C7C7C7;
    letter-spacing: 0.02em;
    word-break: break-word;
}

.benefit-img {
    max-width: 45%;
    min-width: 300px;
    border-radius: 10px;
    margin: 20px;
}

.pricing {
    text-align: center;
    margin-top: 100px;
    padding: 0 50px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

.pricing-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.pricing-sentence {
    font-size: 20px;
    color: #C7C7C7;
    margin-bottom: 40px;
}

.pricing-plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-plan {
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #FF5F5F;
    margin-bottom: 15px;
}

.plan-details {
    font-size: 16px;
    color: #C7C7C7;
    margin-bottom: 25px;
}

.plan-button {
    background-image: linear-gradient(to right, #FF3131 0%, #FF5F5F 50%, #FF3131 100%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-size: 200% auto;
    display: block;
    width: 100%;
}

.plan-button:hover {
    background-position: right center;
}

@media (max-width: 768px) {
    .benefit {
        flex-direction: column;
        align-items: center;
        width: 70%;
        padding: 30px 10px;
    }

    .benefit-text-content {
        margin-right: 0;
        width: 100%;
        max-width: 500px;
        text-align: center;
        margin-bottom: 20px;
    }

    .benefit-img {
        margin-left: 0;
        max-width: 400px;
        min-width: unset;
        margin-top: 20px;
    }

    .benefit-title {
        font-size: 30px;
    }

    .benefit-sentence {
        font-size: 18px;
    }
}

.faq {
    text-align: center;
    margin-top: 100px;
    padding: 0 50px 50px 50px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #2A2A2A;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-question {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FF5F5F;
}

.faq-answer {
    font-size: 18px;
    color: #C7C7C7;
    line-height: 1.6;
}

.final-cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 0 20px 50px 20px;
    background-color: #202020; /* Match body background or choose a distinct color */
    font-family: 'Roboto', sans-serif;
}

.final-cta-title {
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.final-cta-button {
    background-image: linear-gradient(to right, #FF3131 0%, #FF5F5F 50%, #FF3131 100%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px; /* Slightly larger or same as other CTAs */
    padding: 18px 40px; /* Adjust padding for a prominent look */
    border: none;
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block; /* Changed from block to inline-block to respect text-align: center */
    background-size: 200% auto;
    margin-top: 20px; /* Space above the button */
    margin-bottom: 0; /* Removed extra bottom margin */
}

.final-cta-button:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

