/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 15px 0px 15px;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 25px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

section {
    padding: 20px 0;
}

/* Header Styles */
header {
    padding: 20px 0;
    background-color: #000;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    margin-right: 10px;
    border-radius: 0;
}

.game {
    color: #fff;
}

.face {
    color: #00c2ff;
}

/* Hero Section */
.hero {
    background-color: #000;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 10px 0 20px;
}

.hero-content {
    display: flex;
}

.hero-text-content {
    flex: 0 0 50%;
    padding-top: 20px;
}

.hero-image {
    flex: 0 0 50%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.hero h1 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.green-title-text {
    color: #5A9F4E;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 20px;
}

.green-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #A8CA4D;
    max-width: 600px;
    margin-bottom: 20px;
}

.teal-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #4DCAA6;
    max-width: 600px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #5A9F4E;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #5A7F4E;
}

.testimonial-box {
    max-width: 600px;
    margin-top: 15px;
    border-left: thick solid;
    padding-left: 20px;
}

.stars {
    color: #ffcc00;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
    align-self: flex-start;
}

/* How It Works Section */
.how-it-works {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}

.step {
    flex: 0 0 30%;
    margin-bottom: 30px;
    text-align: center;
}

.step-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 4px rgba(90, 159, 78, 0.3);
    overflow: visible;
}

.step-image::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid rgba(90, 127, 78, 0.5);
    z-index: 1;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #5A9F4E;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.8rem;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(90, 127, 78, 0.3);
}

/* Benefits Section */
.benefits {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-icon {
    background-color: #5A9F4E;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 0 4px rgba(90, 127, 78, 0.3);
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid rgba(90, 127, 78, 0.5);
}

.benefit-icon i {
    font-size: 1.5rem;
}

.benefit-content {
    flex-grow: 1;
    font-size: 20px;;
}

.benefit-content h3 {
    margin-bottom: 10px;
}

/* Tools Section */
.tools {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.tool-text {
    margin-bottom: 20px;
}

.tool-image {
    grid-column: 2;
    grid-row: 1 / span 4;
}

/* Preregister Section */
.preregister {
    background-color: #e6e6e6;
    color: #333;
    padding: 30px 0;
    text-align: center;
}

.preregister h2 {
    margin-bottom: 10px;
}

.preregister-intro {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

/* Form row styling */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}



            #mc_embed_signup form {padding: 30px; background-color: #fff; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);}
            #mc_embed_signup .button {background-color: #5A9F4E; color: #000; font-weight: bold; border-radius: 5px; border: 1px solid #FFF; padding: 15px 30px; height: auto; transition: background-color 0.3s;}
            #mc_embed_signup .mc-field-group input, #mc_embed_signup .mc-field-group select {border-radius: 5px; padding: 12px; border: 1px solid #ccc;}
            #mc_embed_signup .button:hover {background-color: #5A7F4E;}
            #mc_embed_signup label {color: #333; font-weight: bold; padding-bottom: 5px;}
            #mc_embed_signup .asterisk {color: #ff6b6b;}
            #mc_embed_signup .mc-field-group {padding-bottom: 2%; width: 100%;}
            #mc_embed_signup h2 {font-size: 2rem; color: #333; text-align: center; margin-bottom: 20px;}
            #mc_embed_signup .indicates-required {text-align: right; margin-bottom: 15px; color: #333;}



/* Override Mailchimp styles */
#mc_embed_signup {
    background:transparent; clear:left; font:14px Arial,sans-serif; margin: 0 auto; width: 100%;
}

#mc_embed_signup .mc-field-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    min-height: auto;
    margin-bottom: 5px;
}

#mc_embed_signup .mc-field-group label {
    width: 30%;
    text-align: right;
    padding-right: 10px;
    font-size: 0.9rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

#mc_embed_signup .mc-field-group input,
#mc_embed_signup .mc-field-group select {
    width: 70%;
    height: 32px;
    padding: 5px 10px;
    font-size: 0.9rem;
}

#mc_embed_signup form {
    padding: 20px;
    margin-bottom: 0;
}

#mc_embed_signup .indicates-required {
    text-align: right;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

#mc_embed_signup .button {
    margin-top: 10px;
    padding: 8px 20px;
    height: auto;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 5px;
    }
    
    #mc_embed_signup .mc-field-group {
        margin-bottom: 5px;
    }
    
    #mc_embed_signup .mc-field-group label {
        width: 40%;
        font-size: 0.85rem;
    }
    
    #mc_embed_signup .mc-field-group input,
    #mc_embed_signup .mc-field-group select {
        width: 60%;
    }
    
    #mc_embed_signup {
        width: 100%;
        padding: 0 10px;
    }
    
    #mc_embed_signup form {
        padding: 15px 10px;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}

.testimonial-card {
    flex: 0 0 30%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-card p {
    flex-grow: 1;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 15px;
    align-self: flex-start;
}

.large-testimonial {
    display: flex;
    background-color: #000;
    color: #fff;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.large-testimonial-content {
    flex: 0 0 50%;
    padding: 40px;
    display: flex;
    align-items: center;
}

.large-testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.large-testimonial-image {
    flex: 0 0 50%;
}

.large-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Comparison Section */
.comparison {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #aaa;
}

.comparison-table td:first-child {
    font-weight: bold;
}

.comparison-table th {
    font-weight: bold;
}

.icon-text {
    display: flex;
    align-items: flex-start;
}

.check, .x {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.check i, .x i {
    font-size: 40px !important;
}

.check i.fa-check-circle {
    color: #A8CA4D !important;
}

.x i.fa-times-circle {
    color: #ff6b6b !important;
}

/* FAQ Section */
.faq {
    background-color: #e6e6e6;
    color: #333;
    padding: 5px 0 5px;
}

.faq-item {
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    padding: 15px 0;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.faq-question i {
    margin-right: 10px;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 0 15px 25px;
    display: none;
}

/* CTA Section */
.cta-section {
    background-color: #e6e6e6;
    color: #333;
    padding: 40px 0;
    text-align: center;
}

.pricing {
    margin: 20px 0;
}

.pricing h3 {
    font-size: 1.8rem;
}

.final-testimonials {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.final-testimonial-card {
    flex: 0 0 48%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer .logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .logo-image {
    height: 40px;
    margin-right: 10px;
    border-radius: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .steps {
        justify-content: center;
    }
    
    .step {
        flex: 0 0 45%;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-image {
        grid-column: 1;
        grid-row: auto;
        margin-top: 30px;
    }
    
    .testimonial-grid {
        justify-content: center;
    }
    
    .testimonial-card {
        flex: 0 0 45%;
    }
    
    .large-testimonial {
        flex-direction: column;
    }
    
    .large-testimonial-content, .large-testimonial-image {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .step {
        flex: 0 0 100%;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .final-testimonials {
        flex-direction: column;
    }
    
    .final-testimonial-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta-button {
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .comp-text {
        display: none;
    }
}

/* Image Styles */

.tool-image img, .large-testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
