<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main styles */
body {
    font-family: 'Nunito';
    background-color: #FFF8D0;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 497px;
    background-color: #2C6B3F;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-left: 107px;
    padding-top: 202px;
}

.hero-title {
    width: 613px;
    height: 65px;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.hero-subtitle {
    width: 476px;
    height: 27px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}

.hero-image-container {
    position: absolute;
    top: 74px;
    right: 42px;
}

.hero-image {
    width: 670px;
    height: 439px;
    border-radius: 15px;
    border: 2px solid #000000;
    object-fit: cover;
}

/* FAQ Navigation Buttons */
.faq-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 110px;
}

.button-container {
    width: 845px;
    height: 64px;
    display: flex;
    justify-content: center;
    gap: 75px;
}

.nav-button {
    width: 155px;
    height: 64px;
    border-radius: 10px;
    border: 1px solid #000000;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
}

.general-button {
    
    background-color: #99BEA4;
    color: #000000;
}

.safety-button {
    
    background-color: #99BEA4;
    color: #000000; 
   
}
.features-button{
   
    color: #FFFFFF;
    
    background-color: #2C6B3F;
}
.account-button{
   
    background-color: #99BEA4;
    color: #000000;
}

.premium-button{
    
    background-color: #99BEA4;
    color: #000000;
}

/* FAQ Content Section */
.faq-content {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #2C6B3F;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #FFFFFF;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
}

.plus-icon {
    font-size: 24px;
    font-weight: 700;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #99BEA4;
    color: #000000;
}

.faq-answer p {
    padding: 20px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

/* Support Section */
.support-section {
    background-color: #99BEA4;
    padding: 60px 20px;
    text-align: center;
    margin: 80px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

.support-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.support-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #000000;
}

.support-button {
    display: inline-block;
    background-color: #2C6B3F;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid #000000;
}

/* Media Queries for Tablet */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .hero-content {
        padding-left: 50px;
        padding-top: 70px;
    }
    
    .hero-title {
        width: 100%;
        max-width: 500px;
        font-size: 40px;
    }
    
    .hero-subtitle {
        width: 100%;
        max-width: 400px;
        font-size: 18px;
    }
    
    .hero-image-container {
        top: 100px;
        right: 20px;
    }
    
    .hero-image {
        width: 450px;
        height: 300px;
    }
    
    .button-container {
        width: 100%;
        gap: 30px;
    }
    
    .nav-button {
        width: 130px;
        font-size: 26px;
    }
}

/* Media Queries for Mobile */
@media only screen and (max-width: 767px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
    }

    .button-container{
        gap: 55px;
    }
    
    .hero-content {
        padding-left: 0;
        padding-top: 0;
        text-align: center;
    }
    
    .hero-title {
        width: 100%;
        height: auto;
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        width: 100%;
        height: auto;
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-image-container {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 670/439;
    }
    
    .faq-navigation {
        margin-top: 50px;
    }
    
    .button-container {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-button {
        width: calc(50% - 10px);
        height: 50px;
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
}</pre></body></html>