/* 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;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c5f41;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #2e7d32;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1b5e20;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2e7d32;
    color: white;
}

.btn-primary:hover {
    background-color: #1b5e20;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #66bb6a;
    color: white;
}

.btn-secondary:hover {
    background-color: #4caf50;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 95, 65, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-content p{
  color: white!important;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

.navbar {
    padding: 1rem 0;
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-link:hover,
.nav-link.active {
    color: #2e7d32;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2e7d32;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2e7d32;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-text h1 {
    font-size: 3rem;
    color: #2c5f41;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.hero-image {
    text-align: center;
}

.hero-svg {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-svg {
    width: 80px;
    height: 80px;
}

.feature-card h3 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f41;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.about-svg {
    max-width: 100%;
    height: auto;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 60px 0;
}

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

.header-svg {
    max-width: 100%;
    height: auto;
}

/* Mission Section */
.mission {
    padding: 80px 0;
}

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

.section-svg {
    max-width: 100%;
    height: auto;
}

/* Values Grid */
.values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.value-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-svg {
    width: 60px;
    height: 60px;
}

/* Company Info */
.company-info {
    padding: 80px 0;
}

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

.course-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.info-svg {
    max-width: 100%;
    height: auto;
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background-color: #2c5f41;
    color: white;
}

.statistics .section-title {
    color: white;
}

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

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    color: #66bb6a;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #e8f5e8;
    font-size: 1.1rem;
}

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

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

.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.module-card:hover {
    transform: translateY(-5px);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.module-icon {
    width: 50px;
    height: 50px;
}

.module-topics {
    margin: 20px 0;
    padding-left: 20px;
}

.module-duration {
    background-color: #e8f5e8;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
    color: #2c5f41;
    margin-top: 15px;
}

/* Course Benefits */
.course-benefits {
    padding: 80px 0;
}

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

.benefit-item {
    padding: 30px;
    border-left: 4px solid #2e7d32;
    background-color: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: #2c5f41;
}

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

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

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

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    text-align: center;
}

.testimonial-icon {
    margin-bottom: 20px;
}

.testimonial-svg {
    width: 60px;
    height: 60px;
}

.testimonial-text {
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.testimonial-author h4 {
    color: #2c5f41;
    margin-bottom: 5px;
}

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

.testimonial-rating {
    margin-top: 10px;
    font-size: 1.2rem;
}

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

.stat-icon {
    margin-top: 15px;
}

.stat-svg {
    width: 40px;
    height: 40px;
}

/* Testimonial CTA */
.testimonial-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5f41 0%, #2e7d32 100%);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.cta-text h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-text p {
    color: #e8f5e8;
}

.cta-svg {
    max-width: 100%;
    height: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Styles */
.featured-article {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.featured-svg {
    max-width: 100%;
    height: auto;
}

.featured-tag {
    background-color: #2e7d32;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-text h2 {
    margin: 20px 0 15px 0;
    color: #2c5f41;
}

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

.article-meta span {
    color: #777;
    font-size: 0.9rem;
}

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

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

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

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    padding: 30px;
    text-align: center;
    background-color: #f8f9fa;
}

.blog-svg {
    width: 80px;
    height: 80px;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    background-color: #e8f5e8;
    color: #2c5f41;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.blog-content h3 a {
    color: #2c5f41;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #777;
}

.read-more {
    color: #2e7d32;
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5f41 0%, #2e7d32 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

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

.newsletter-text p {
    color: #e8f5e8;
}

.newsletter-svg {
    max-width: 100%;
    height: auto;
}

.newsletter-form,
.form-inline {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    min-width: 250px;
    flex: 1;
}

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

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

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

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

.category-icon {
    margin-bottom: 20px;
}

.category-svg {
    width: 60px;
    height: 60px;
}

.article-count {
    background-color: #e8f5e8;
    color: #2c5f41;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

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

.contact-details {
    margin-top: 30px;
}

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

.contact-icon {
    flex-shrink: 0;
}

.contact-svg {
    width: 40px;
    height: 40px;
}

.contact-text h3 {
    color: #2c5f41;
    margin-bottom: 10px;
}

/* Forms */
.form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2e7d32;
}

.error-message {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

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

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #2e7d32;
    border-color: #2e7d32;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

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

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

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-icon {
    margin-bottom: 20px;
}

.faq-svg {
    width: 50px;
    height: 50px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.map-details {
    margin-top: 20px;
}

.map-details p {
    margin-bottom: 10px;
}

.map-placeholder {
    position: relative;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
}

.map-svg {
    width: 100px;
    height: 100px;
}

.map-overlay {
    margin-top: 20px;
    font-weight: 500;
    color: #2c5f41;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 60px 0;
    text-align: center;
}

.legal-subtitle {
    color: #777;
    font-size: 1.1rem;
    margin-top: 10px;
}

.legal-content-section {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #2c5f41;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.legal-section h3 {
    color: #2e7d32;
    margin: 25px 0 15px 0;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

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

/* Cookie Controls */
.cookie-controls {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.cookie-settings {
    margin: 20px 0;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
}

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

.toggle-slider {
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    position: relative;
    transition: background-color 0.3s ease;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider {
    background-color: #2e7d32;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider::after {
    transform: translateX(25px);
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 20px;
    color: #777;
}

.breadcrumb a {
    color: #2e7d32;
}

.article-category {
    background-color: #2e7d32;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 15px;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0 40px 0;
    line-height: 1.6;
}

.article-image {
    text-align: center;
    margin-top: 40px;
}

.article-svg {
    width: 150px;
    height: 150px;
}

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

.article-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #2e7d32;
    border-radius: 0 8px 8px 0;
}

.article-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.article-highlight h3 {
    color: #2c5f41;
    margin-bottom: 20px;
}

.article-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #2e7d32;
    border-radius: 0 12px 12px 0;
}

.article-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.article-quote cite {
    font-weight: 500;
    color: #2c5f41;
}

.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e8f5e8;
}

.tag {
    display: inline-block;
    background-color: #e8f5e8;
    color: #2c5f41;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 5px 10px 5px 0;
}

/* Article Sidebar */
.article-sidebar {
    max-width: 300px;
    margin: 0 auto;
    margin-top: 60px;
}

.sidebar-widget {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: #2c5f41;
    margin-bottom: 20px;
}

.related-articles {
    list-style: none;
}

.related-articles li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.related-articles li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-articles a {
    font-weight: 500;
    color: #2c5f41;
    line-height: 1.4;
}

.related-date {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
}

.sidebar-newsletter {
    text-align: center;
}

.sidebar-newsletter input {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
}

/* Thank You Page */
.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-svg {
    width: 120px;
    height: 120px;
}

.success-message {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.success-message h2 {
    color: #2c5f41;
    margin-bottom: 15px;
}

.next-steps {
    margin: 60px 0;
}

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

.step {
    display: flex;
    gap: 20px;
    text-align: left;
}

.step-number {
    background-color: #2e7d32;
    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 h4 {
    color: #2c5f41;
    margin-bottom: 10px;
}

.contact-info h3 {
    color: #2c5f41;
    margin-bottom: 20px;
}

.contact-details {
    text-align: left;
}

.contact-item {
    margin-bottom: 10px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Recommended Content */
.recommended-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.recommendation-card:hover {
    transform: translateY(-5px);
}

.recommendation-icon {
    margin-bottom: 20px;
}

.recommendation-svg {
    width: 60px;
    height: 60px;
}

.recommendation-link {
    color: #2e7d32;
    font-weight: 500;
    text-decoration: none;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5f41 0%, #2e7d32 100%);
    color: white;
}

.newsletter-benefits {
    list-style: none;
    margin: 20px 0;
}

.newsletter-benefits li {
    margin-bottom: 10px;
    padding-left: 0;
}

.newsletter-form-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.newsletter-form-container h3 {
    color: white;
    text-align: center;
    margin-bottom: 25px;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: #e8f5e8;
    line-height: 1.6;
}

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

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

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

.footer-links a:hover {
    color: #66bb6a;
}
.footer-bottom p{
    color: #e8f5e8;
}
.contact-info {
    color: #e8f5e8;
}

.footer-bottom {
    border-top: 1px solid #388e3c;
    padding-top: 20px;
    text-align: center;
    color: #e8f5e8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content,
    .about-content,
    .header-content,
    .section-content,
    .info-content,
    .cta-content,
    .featured-content,
    .newsletter-content,
    .contact-content,
    .map-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .testimonial-card.featured {
        grid-column: span 1;
    }

    .hero-buttons,
    .cta-buttons,
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-form,
    .form-inline {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: auto;
        width: 100%;
    }

    .article-body {
        padding: 0 15px;
    }

    .article-content {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        max-width: none;
        margin-top: 40px;
    }

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

    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .features-grid,
    .values-grid,
    .modules-container,
    .testimonials-grid,
    .articles-grid,
    .categories-grid,
    .benefits-grid,
    .faq-grid,
    .recommendations-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

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

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

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .nav-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
