/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
}

h2 {
    font-size: 2rem;
    color: #2c5f2d;
}

h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background-color: #97bc62;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #7ea050;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #2c5f2d;
    border: 2px solid #97bc62;
    padding: 10px 22px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #97bc62;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 10px 22px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #2c5f2d;
    color: white;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5f2d;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    animation: slideUp 0.3s ease-out;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #97bc62;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: #97bc62;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #97bc62;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card img {
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

/* Newsletter Section */
.newsletter {
    background-color: #97bc62;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #2c5f2d;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #97bc62;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #97bc62;
}

.footer-bottom {
    border-top: 1px solid #4a7c59;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5f2d 0%, #97bc62 100%);
    color: white;
    padding: 60px 0;
}

.page-header-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-text h2 {
    margin-bottom: 30px;
}

.content-text h3 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.content-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-text li {
    list-style: disc;
    margin-bottom: 8px;
}

/* Mission Section */
.mission-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.mission-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.mission-card h3 {
    color: #97bc62;
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.team-section p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: #97bc62;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-overview > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.service-card ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-card li {
    list-style: disc;
    margin-bottom: 5px;
    color: #666;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #97bc62;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

/* Learning Modules */
.learning-modules {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.learning-modules h2 {
    text-align: center;
    margin-bottom: 40px;
}

.learning-modules > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.module {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    border-left: 4px solid #97bc62;
}

.module h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

/* Course Features */
.course-features {
    padding: 80px 0;
}

.course-features h2 {
    text-align: center;
    margin-bottom: 60px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature h3 {
    color: #97bc62;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5f2d 0%, #97bc62 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #97bc62;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.stat-card p {
    color: #666;
    margin: 0;
}

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

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #97bc62;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.testimonial-author strong {
    color: #2c5f2d;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Video Testimonials */
.video-testimonials {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.video-testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.video-testimonials p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.video-placeholder {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.video-placeholder img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-placeholder p {
    padding: 20px;
    margin: 0;
    text-align: center;
    color: #666;
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
}

.blog-articles h2 {
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

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

.blog-category {
    background-color: #97bc62;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-content h3 {
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: #2c5f2d;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #97bc62;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #97bc62;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2c5f2d;
}

/* Blog Categories */
.blog-categories {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-card img {
    margin-bottom: 20px;
}

.category-card h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    margin: 0;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    text-align: center;
}

.newsletter-signup h2 {
    margin-bottom: 20px;
}

.newsletter-signup p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details h2 {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item img {
    flex-shrink: 0;
}

.contact-item h3 {
    color: #2c5f2d;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    margin-bottom: 5px;
}

.map-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44,95,45,0.9));
    color: white;
    padding: 30px;
}

.map-overlay p {
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c5f2d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #97bc62;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #97bc62;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #2c5f2d;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    margin: 0;
}

/* Thank You Section */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    text-align: left;
}

.confirmation-details h2 {
    text-align: center;
    margin-bottom: 40px;
}

.next-steps {
    display: grid;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background-color: #97bc62;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #2c5f2d;
}

.step-content p {
    color: #666;
    margin: 0;
}

.contact-info-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #97bc62;
    margin-bottom: 50px;
}

.contact-info-box h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.contact-methods {
    display: grid;
    gap: 10px;
}

.contact-method {
    color: #666;
}

/* Additional Info */
.additional-info {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.additional-info h2 {
    text-align: center;
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-card img {
    margin-bottom: 20px;
}

.info-card h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    margin-bottom: 25px;
}

/* Social Section */
.social-section {
    padding: 80px 0;
    text-align: center;
}

.social-section h2 {
    margin-bottom: 20px;
}

.social-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    background-color: #2c5f2d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #97bc62;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.legal-meta {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.legal-meta p {
    margin: 0;
    color: #666;
}

.legal-document h2 {
    color: #2c5f2d;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-document h3 {
    color: #97bc62;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document ul,
.legal-document ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-document li {
    margin-bottom: 8px;
    color: #555;
}

.legal-document strong {
    color: #2c5f2d;
}

.legal-document a {
    color: #97bc62;
    text-decoration: underline;
}

.legal-document a:hover {
    color: #2c5f2d;
}

.contact-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.effective-date {
    background-color: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.effective-date em {
    color: #2c5f2d;
    font-weight: 500;
}

/* Cookie Policy Specific */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #2c5f2d;
    color: white;
    font-weight: 500;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-preferences {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.cookie-preferences h4 {
    margin-bottom: 20px;
    color: #2c5f2d;
}

.cookie-controls {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.cookie-category {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    margin-left: 30px;
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #2c5f2d 0%, #97bc62 100%);
    color: white;
    padding: 40px 0;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: white;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-date,
.article-category,
.article-author {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.article-header h1 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.article-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    color: rgba(255,255,255,0.9);
}

.article-image {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.article-image img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-content {
    padding: 60px 0;
}

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

.article-body h2 {
    color: #2c5f2d;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body h3 {
    color: #97bc62;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-body h4 {
    color: #2c5f2d;
    margin-top: 25px;
    margin-bottom: 12px;
}

.article-body ul,
.article-body ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 8px;
    color: #555;
}

.article-body strong {
    color: #2c5f2d;
}

.article-body a {
    color: #97bc62;
    text-decoration: underline;
}

.article-body a:hover {
    color: #2c5f2d;
}

.article-navigation {
    max-width: 800px;
    margin: 40px auto;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.article-tags h3,
.article-share h3 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #2c5f2d;
}

.tag {
    display: inline-block;
    background-color: #97bc62;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.share-btn {
    background-color: #2c5f2d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: #97bc62;
}

.related-articles {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.related-articles h3 {
    margin-bottom: 20px;
    color: #2c5f2d;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.related-article {
    display: block;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateY(-3px);
}

.related-article img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.related-article h4 {
    padding: 15px;
    margin: 0;
    font-size: 0.9rem;
    color: #2c5f2d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 10px 15px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .page-header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .article-navigation {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content p {
        min-width: auto;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        padding: 30px 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .social-section,
    .newsletter,
    .newsletter-signup,
    .cta-section {
        display: none;
    }
    
    .article-content,
    .legal-content {
        padding: 20px 0;
    }
    
    .article-header {
        background: none;
        color: black;
        padding: 20px 0;
    }
    
    .article-header h1 {
        color: black;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        border-width: 2px;
    }
    
    .feature-card,
    .service-card,
    .blog-card {
        border: 2px solid #333;
    }
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #97bc62;
    outline-offset: 2px;
}

/* Skip to main content */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2c5f2d;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
}

.skip-to-main:focus {
    top: 6px;
}
