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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

p {
    font-weight: 300;
    max-width: 700px;
}

/* Navigation */
.navbar {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff !important;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: #333 !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 400;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #22A45D !important;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background-color: #8B0000;
    color: white;
    padding: 20px;
    margin-top: 80px;
    margin-bottom: 0;
}

.disclaimer-banner strong {
    display: block;
    margin-bottom: 10px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1600&h=900&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 164, 93, 0.8), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0 auto 2rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background-color: #22A45D;
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #1a8349;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 164, 93, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: white;
    color: #22A45D;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #22A45D;
}

.feature-card p {
    font-weight: 300;
    margin: 0 auto;
}

/* Content Section */
.content-text {
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #22A45D, #1a8349);
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a8349, #22A45D);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
}

.footer h4, .footer h5 {
    margin-bottom: 1rem;
    color: #22A45D;
}

.footer-tagline {
    color: #bbb;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #22A45D;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-icon {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #22A45D;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0;
    display: inline;
    max-width: 100%;
}

.cookie-banner a {
    color: #22A45D;
}

.cookie-banner button {
    margin-left: 1rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: #22A45D;
    box-shadow: 0 0 0 0.2rem rgba(34, 164, 93, 0.25);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8f9fa;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #22A45D;
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(34, 164, 93, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .disclaimer-banner {
        margin-top: 70px;
    }
}

/* Article Styles */
.article-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 3rem;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.article-title {
    color: white;
    font-size: 2.5rem;
    margin: 0;
}

.article-meta {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.related-articles {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-top: 4rem;
}