body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1a4d2e;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #1a4d2e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .button-primary{
        margin-top: 0 !important;
    }

    #contactModal h3{
        margin-bottom: 0 !important;
    }
}

.button-primary {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.button-primary:hover {
    background-color: #218838;
    text-decoration: none;
}

.button-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.button-secondary:hover {
    background-color: #5a6268;
    text-decoration: none;
}

/* Top Bar */
.top-bar {
    background-color: #e74c3c;
    color: #e0ffe0;
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}

.top-bar-text a {
    color: #e0ffe0;
    text-decoration: underline;
}

.top-bar-text a:hover {
    color: #fff;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2c3e50;
}

.site-logo {
    height: 40px;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a4d2e;
    white-space: nowrap;
}

.age-badge {
    background-color: #e74c3c;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 5px;
}

.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-nav .nav-list a {
    color: #555;
    font-weight: 700;
    transition: color 0.3s ease;
}

.main-nav .nav-list a:hover {
    color: #1a4d2e;
    text-decoration: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #2c3e50;
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 1100px) {
    .main-nav .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        align-items: center;
        text-align: center;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        width: 100%;
        padding: 15px 0;
        border-radius: 5px;
        gap: 5px;
        z-index: 999;
        overflow-x: hidden;
    }

    .main-nav .nav-list.active {
        display: flex;
    }

    .main-nav .nav-list li {
        margin: 10px 0;
        text-align: right;
    }

    .main-nav .nav-list a {
        padding: 10px;
        display: block;
        font-size: 22px;
    }

    .burger-menu {
        display: block;
    }
}

/* Advantages Section */
.advantages-section {
    background-color: #e0ffe0;
    padding: 40px 0;
    text-align: center;
}

.advantages-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.advantage-item {
    flex-basis: calc(33% - 40px);
    max-width: 300px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 1.2rem;
    color: #1a4d2e;
    margin-bottom: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    text-align: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #e0ffe0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    max-height: 40vh;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text-wrapper {
    flex: 2;
    min-width: 300px;
}

.about-text-wrapper h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.about-text-wrapper h3 {
    font-size: 1.5rem;
    color: #28a745;
    margin-top: 2rem;
}

.about-text-wrapper ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.about-text-wrapper ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.about-text-wrapper ul li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0;
}

/* Offer Cards Section */
.offers-section {
    padding: 80px 0;
    background-color: #e0ffe0;
}

.offers-section h2 {
    color: #1a4d2e;
}

.offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.offer-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-image-link {
    padding: 10px;
    display: block;
    height: 200px; /* Fixed height for images */
    overflow: hidden;
}

.offer-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-card .badge {
    background-color: #ffc107;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.offer-card .rating {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.offer-card .rating .stars {
    color: #ffc107;
}

.offer-card .short-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.offer-card .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.offer-card .features-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
}

.offer-card .features-list li i {
    color: #28a745;
    margin-right: 8px;
}

.offer-card .bonus-info {
    font-size: 1rem;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 15px;
}

.offer-card .full-width-btn {
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
}

.offer-card .active-users {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    margin-top: 10px;
}

.offer-grid-two{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

@media (max-width: 991px){
    .offer-grid-two{
        grid-template-columns: repeat(1, 1fr);
    }

     .offer-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Adjust grid for 5 cards: 2 in first row, 3 in second */
   

@media (min-width: 1200px) {
    .offer-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .offer-cards-grid > :nth-child(1), .offer-cards-grid > :nth-child(2) {
        grid-column: span 1;
    }
    /* .offer-cards-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    } */
    .offer-card {
        flex-basis: calc(33.333% - 20px);
        margin: 10px;
    }
    .offer-cards-grid > :nth-child(1), .offer-cards-grid > :nth-child(2) {
        flex-basis: calc(50% - 20px);
    }
    .offer-cards-grid > :nth-child(3), .offer-cards-grid > :nth-child(4), .offer-cards-grid > :nth-child(5) {
        flex-basis: calc(33.333% - 20px);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.testimonials-section h2 {
    color: #1a4d2e;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-left: 5px solid #28a745;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #e0ffe0;
}

.faq-section h2 {
    color: #1a4d2e;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    background-color: #f9f9f9;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
}

.faq-answer p {
    margin-bottom: 0;
    color: #555;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.tips-section h2 {
    color: #1a4d2e;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.tip-item i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
}

.tip-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tip-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background-color: #e0ffe0;
    text-align: center;
}

.contact-section h2 {
    color: #1a4d2e;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.comparison-section h2 {
    color: #1a4d2e;
}

.comparison-section h3 {
    color: #28a745;
    margin-top: 2.5rem;
}

.comparison-section ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.comparison-section ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.comparison-section ul li::before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background-color: #fff3cd; /* Light yellow background to stand out */
    border-top: 1px solid #ffeeba;
    border-bottom: 1px solid #ffeeba;
}

.disclaimer-box {
    background-color: #fff;
    border: 1px solid #ffeb8a;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #e74c3c;
    position: absolute;
    top: 20px;
    left: 20px;
}

.disclaimer-box h2 {
    color: #e74c3c;
    text-align: left;
    padding-left: 60px;
    margin-bottom: 20px;
}

.disclaimer-box h3 {
    color: #1a4d2e;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.disclaimer-box p {
    margin-bottom: 15px;
    color: #444;
}

.disclaimer-box a {
    color: #e74c3c;
    font-weight: 700;
}

.disclaimer-box a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #1a4d2e;
    color: #e0ffe0;
    padding: 50px 0 20px 0;
    font-size: 0.9rem;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-main-info, .footer-links, .footer-highlights {
    flex: 1;
    min-width: 250px;
}

.footer-logo-container .site-name {
    color: #e0ffe0;
}

.footer-main-info p {
    margin-bottom: 8px;
}

.footer-main-info a {
    color: #e0ffe0;
}

.footer-main-info a:hover {
    color: #fff;
}

.footer-links h3, .footer-highlights h3 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: left;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #e0ffe0;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-highlights .highlight-item {
    background-color: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-highlights .highlight-item h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.footer-highlights .highlight-item p {
    color: #e0ffe0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-logos {
    border-radius: 15px;
    padding: 20px;
    background-color: #f5f5f578;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo-item {
    max-width: 80px;
    height: auto;
    display: block;
}

.copyright {
    margin-top: 20px;
    color: #a0c2a0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.age-modal-content {
    text-align: center;
}

.age-modal-content h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.age-modal-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close-button:hover, .close-button:focus {
    color: #000;
    text-decoration: none;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .site-name {
        font-size: 1.5rem;
    }
    .advantages-grid {
        flex-direction: column;
        align-items: center;
    }
    .advantage-item {
        flex-basis: 80%;
    }
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    .about-text-wrapper h2 {
        text-align: center;
    }
    .footer-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links h3, .footer-highlights h3 {
        text-align: center;
    }
    .footer-links ul li {
        text-align: center;
    }
    .disclaimer-icon {
        position: static;
        margin-bottom: 15px;
    }
    .disclaimer-box h2 {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .site-name {
        font-size: 1.25rem; /* Mobile header logo text size */
    }
    .site-logo {
        height: 30px;
    }
    .advantages-section, .about-section, .offers-section, .testimonials-section, .faq-section, .tips-section, .contact-section, .comparison-section, .disclaimer-section, .site-footer {
        padding: 40px 0;
    }
    .offer-cards-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid, .tips-grid {
        grid-template-columns: 1fr;
    }
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    .modal-actions button {
        width: 100%;
    }
}
/* Parent container for legal content */
.legalFoldBox {
    margin-top: 2rem; /* Top margin for the box */
    margin-left: 1.5rem; /* Left margin for the box */
    margin-right: 1.5rem; /* Right margin for the box */
    /* You might want to add max-width and margin: auto for better responsiveness on larger screens */
    /* max-width: 768px; */
    /* margin-inline: auto; */
}

/* Heading 1 styles */
.legalFoldBox h1 {
    font-size: 2rem; /* Moderate font size for H1 */
    font-weight: 600; /* Semi-bold font weight */
    margin-top: 2em; /* Top margin relative to H1 font size */
    margin-bottom: 1em; /* Bottom margin relative to H1 font size */
    line-height: 1.2; /* Line height for better readability */
}

/* Heading 2 styles */
.legalFoldBox h2 {
    font-size: 1.8rem; /* Moderate font size for H2 */
    font-weight: 600; /* Semi-bold font weight */
    margin-top: 1.8em; /* Top margin relative to H2 font size */
    margin-bottom: 0.9em; /* Bottom margin relative to H2 font size */
    line-height: 1.25; /* Line height for better readability */
}

/* Heading 3 styles */
.legalFoldBox h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    font-weight: 600; /* Semi-bold font weight */
    margin-top: 1.6em; /* Top margin relative to H3 font size */
    margin-bottom: 0.8em; /* Bottom margin relative to H3 font size */
    line-height: 1.3; /* Line height for better readability */
}

/* Heading 4 styles */
.legalFoldBox h4 {
    font-size: 1.2rem; /* Moderate font size for H4 */
    font-weight: 600; /* Semi-bold font weight */
    margin-top: 1.4em; /* Top margin relative to H4 font size */
    margin-bottom: 0.7em; /* Bottom margin relative to H4 font size */
    line-height: 1.35; /* Line height for better readability */
}

/* Heading 5 styles */
.legalFoldBox h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    font-weight: 600; /* Semi-bold font weight */
    margin-top: 1.2em; /* Top margin relative to H5 font size */
    margin-bottom: 0.6em; /* Bottom margin relative to H5 font size */
    line-height: 1.4; /* Line height for better readability */
}

/* Paragraph styles */
.legalFoldBox p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Standard line height for readability */
    margin-bottom: 1em; /* Space below paragraphs */
}

/* Unordered list styles */
.legalFoldBox ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 1.5em; /* Indentation for bullet points */
}

/* List item styles */
.legalFoldBox li {
    font-size: 1rem; /* Base font size for list items */
    line-height: 1.6; /* Standard line height for readability */
    margin-bottom: 0.5em; /* Space between list items */
}
