/* Global Styles */
:root {
    --color-primary: #606C38;
    --color-secondary: #283618;
    --color-background: #FEFAE0;
    --color-accent: #DDA15E;
    --color-accent-dark: #BC6C25;
    --font-primary: 'Roboto', Arial, sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-secondary);
    background-color: var(--color-background);
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

h1,
h2,
h3 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
}

header {
    background-color: var(--color-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    left: 0;
}

header.scrolled {
    background-color: rgba(96, 108, 56, 0.9);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-background);
    text-decoration: none !important;
}

.desktop-menu {
    list-style-type: none;
    display: flex;
}

.desktop-menu li {
    margin-left: 2rem;
}

.desktop-menu li a {
    color: var(--color-background);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-menu li a:hover {
    color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-background);
    position: relative;
    transition: background-color 0.3s ease;
}

.burger-icon::before,
.burger-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--color-background);
    transition: all 0.3s ease;
}

.burger-icon::before {
    top: -8px;
}

.burger-icon::after {
    bottom: -8px;
}

.mobile-menu-btn.active .burger-icon {
    background-color: transparent;
}

.mobile-menu-btn.active .burger-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .burger-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu li {
    margin: 0.5rem 0;
}

.mobile-menu li a {
    color: var(--color-background);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 1rem;
}

.mobile-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main Content Styles */
main {
    padding-top: 80px;
}

/* Hero Section Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px 10px 10px 0;
    border: none;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Features Section Styles */
#features {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.feature-content {
    flex: 1;
    padding: 15px;
    padding-right: 30px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

/* Pricing Section Styles */
#pricing {
    padding: 50px 0;
    text-align: center;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-primary);
    margin: 20px 0;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* FAQ Section Styles */
#faq {
    padding: 50px 0;
}

.faq-item {
    margin-bottom: 30px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item p {
    margin-top: 10px;
}

/* Footer Styles */
footer {
    background-color: var(--color-secondary);
    color: var(--color-background);
    padding: 30px 0;
    margin-top: 50px;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--color-accent);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent-dark);
}

footer a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-accent-dark);
}

.money-back-guarantee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-badge {
    margin-right: 10px;
}

.guarantee-badge svg {
    width: 50px;
    height: 50px;
}

.money-back-guarantee p {
    font-weight: bold;
    color: var(--color-accent);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-wrapper {
        align-items: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-info, .footer-links {
        margin-bottom: 20px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        margin: 5px 0;
    }

    .money-back-guarantee {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .guarantee-badge {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {

    .logo-container {
        flex-grow: 1;
    }

    .logo-text {
        font-size: 1.2rem;
        text-decoration: none !important;
    }

    .hero,
    .feature {
        flex-direction: column;
    }

    .hero-content,
    .feature-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Additional styles for better spacing and readability */
.section {
    margin-bottom: 60px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}

#privacy-policy {
    margin-top: 3rem;
}

#terms-of-use {
    margin-top: 3rem;
}

#privacy-policy h2 {
    text-align: left;
}

#terms-of-use h2 {
    text-align: left;
}

p {
    margin-bottom: 20px;
}

/* Ensure images don't overflow on smaller screens */
img {
    max-width: 100%;
    height: auto;
}

/* Add some hover effects to links */
a:hover {
    text-decoration: underline;
}

/* Style the mobile menu button icon */
.mobile-menu-btn i {
    color: var(--color-background);
}

/* Add a subtle transition to all elements for smoother interactions */
* {
    transition: all 0.3s ease;
}

/* Responsive container sizes */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .feature.reverse {
        flex-direction: row-reverse;
    }
    .feature-content.rev {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}