@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #006532;
    --primary-hover: #004d26;
    --cta-color: #00A91C;
    --cta-hover: #008f17;
    --bg-mint: #E9F6ED;
    --text-deep: #1E2D24;
    --text-light: #5E6D64;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-deep);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Base resets - avoid * as requested */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-mint);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Advertisement Top Bar */
.top-ads-bar {
    background-color: #f8f9fa;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}

.top-ads-bar .ads-text {
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Header & Nav */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 35px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    font-weight: 500;
    color: var(--text-deep);
}

.nav-item:hover {
    color: var(--primary-color);
}

.header-cta {
    background-color: var(--cta-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.header-cta:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
}

/* Mobile Nav Styles */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: var(--transition);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--primary-color);
    margin-bottom: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    border-radius: 50%;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Sections General */
.section {
    padding: 80px 20px;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-mint);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(0, 101, 50, 0.1);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-deep);
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-cta-main {
    background-color: var(--cta-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 500px;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.why-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    background-color: var(--text-deep);
    color: var(--white);
}

.about-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--cta-color);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-mint);
    padding: 40px;
    border-radius: var(--border-radius);
}

.test-text {
    font-style: italic;
    margin-bottom: 25px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--cta-color);
    display: inline-block;
}

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

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

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

.footer-ads-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background-color: var(--white);
    color: var(--text-deep);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.cookie-popup.active {
    bottom: 20px;
}

.cookie-content {
    flex: 1;
    margin-right: 30px;
}

.cookie-title {
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.cookie-btns {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept {
    background-color: var(--cta-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-cookie-reject {
    background-color: #eee;
    color: var(--text-deep);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

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

.modal-content {
    background-color: var(--white);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: var(--border-radius);
    padding: 40px;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.modal-body p {
    margin-bottom: 15px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-flex {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .hero-content,
    .hero-image-wrapper {
        width: 100%;
        flex: none;
    }

    .hero-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-headline {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-wrapper {
        justify-content: center;
        margin-top: 20px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .about-flex {
        flex-direction: column;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        margin-right: 0;
        margin-bottom: 20px;
    }
}