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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

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

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

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

h3 {
    font-size: 1.5rem;
    color: #3d6b4e;
}

h4 {
    font-size: 1.25rem;
    color: #4a7759;
}

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

a {
    text-decoration: none;
    color: #4a7759;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5f41;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #4a7759;
    color: white;
}

.btn-primary:hover {
    background-color: #3d6b4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 119, 89, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4a7759;
    border: 2px solid #4a7759;
}

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

.btn-cta {
    background-color: #7ba05b;
    color: white;
}

.btn-cta:hover {
    background-color: #6a8f4f;
}

/* Header and Navigation */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f41;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #4a7759;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
}

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

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

/* Sections */
.services, .about, .features, .testimonials, .cta {
    padding: 5rem 0;
}

.services {
    background-color: white;
}

.about {
    background-color: #f8fdf8;
}

.features {
    background-color: white;
}

.testimonials {
    background-color: #f0f8f0;
}

.cta {
    background-color: #2c5f41;
    color: white;
}

.cta h2, .cta p {
    color: white;
}

/* Grids */
.services-grid, .features-grid, .testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

/* Cards */
.service-card, .feature-item, .testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon, .service-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.testimonial-author h4 {
    color: #2c5f41;
    margin-bottom: 0.25rem;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-features {
    list-style: none;
    margin-top: 1.5rem;
}

.about-features li {
    margin-bottom: 0.5rem;
    color: #4a7759;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* CTA Section */
.cta-content {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #2c5f41;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3, .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

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

/* Page Headers */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    text-align: center;
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-header-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Blog Styles */
.blog-section {
    padding: 4rem 0;
    background-color: white;
}

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

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

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

.blog-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-icon img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.blog-date, .blog-category {
    font-size: 0.85rem;
    color: #888;
}

.blog-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-card h2 a {
    color: #2c5f41;
}

.read-more {
    color: #4a7759;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

/* Newsletter CTA */
.newsletter-cta {
    background-color: #f0f8f0;
    padding: 4rem 0;
    text-align: center;
}

/* Article Styles */
.article-header {
    padding: 8rem 0 2rem;
    background-color: #f8fdf8;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumb a {
    color: #4a7759;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-date, .article-category, .article-read-time {
    font-size: 0.9rem;
    color: #888;
    background-color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.article-excerpt {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
}

.article-content {
    padding: 3rem 0;
    background-color: white;
}

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

.article-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.article-icon img {
    width: 60px;
    height: 60px;
}

.article-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 0.5rem;
}

.article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* Info boxes and tips */
.info-box, .tip-box, .cta-box {
    background-color: #f0f8f0;
    border-left: 4px solid #4a7759;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 5px 5px 0;
}

.info-box h3, .info-box h4,
.tip-box h3, .tip-box h4,
.cta-box h3, .cta-box h4 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.cta-box {
    text-align: center;
    background-color: #e8f5e8;
}

/* Season boxes for articles */
.season-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.season-box.spring {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.season-box.summer {
    background-color: #fefce8;
    border: 1px solid #fef08a;
}

.season-box.autumn {
    background-color: #fff7ed;
    border: 1px solid #fed7aa;
}

.season-box.winter {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
}

/* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-item {
    max-width: 45%;
}

.nav-item span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.nav-item.next {
    text-align: right;
}

/* Related Articles */
.related-articles {
    background-color: #f8fdf8;
    padding: 3rem 0;
}

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

.related-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.related-icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-card h3 a {
    color: #2c5f41;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7759;
    box-shadow: 0 0 0 2px rgba(74, 119, 89, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

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

.contact-info-wrapper h2 {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 40px;
}

.contact-details h3 {
    color: #2c5f41;
    margin-bottom: 0.5rem;
}

.contact-details small {
    color: #888;
    display: block;
    margin-top: 0.25rem;
}

/* FAQ Section */
.faq-section {
    background-color: #f8fdf8;
    padding: 4rem 0;
}

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

.faq-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

/* Social Section */
.social-section {
    padding: 4rem 0;
    background-color: white;
}

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

.social-card {
    background-color: #f8fdf8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: #4a7759;
}

.social-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* Newsletter Page */
.newsletter-benefits {
    background-color: white;
    padding: 4rem 0;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background-color: #f8fdf8;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

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

.newsletter-form-section {
    background-color: #f0f8f0;
    padding: 4rem 0;
}

.newsletter-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-note {
    text-align: center;
    margin-top: 1rem;
}

/* Newsletter Examples */
.newsletter-examples {
    background-color: white;
    padding: 4rem 0;
}

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

.example-card {
    background-color: #f8fdf8;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #e8f5e8;
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e8;
}

.example-date {
    font-size: 0.9rem;
    color: #888;
}

.example-content h4 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.example-content ul {
    margin-top: 0.5rem;
}

/* Newsletter Testimonials */
.newsletter-testimonials {
    background-color: #f0f8f0;
    padding: 4rem 0;
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    text-align: center;
}

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

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

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

.thanks-details {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details h3 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.contact-info-box {
    background-color: #e8f5e8;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #4a7759;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.step-card h4 {
    margin-bottom: 0.5rem;
    color: #2c5f41;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.resources-section {
    background-color: white;
    padding: 4rem 0;
}

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

.resource-card {
    padding: 2rem;
    background-color: #f8fdf8;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.resource-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

.last-updated {
    color: #666;
    font-style: italic;
}

.legal-content {
    background-color: white;
    padding: 4rem 0;
}

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

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul, .legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.definitions {
    background-color: #f8fdf8;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.definitions dt {
    font-weight: bold;
    color: #2c5f41;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.definitions dd {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

/* Tables */
.data-processing-table, .cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.data-processing-table th, .cookies-table th {
    background-color: #4a7759;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: bold;
}

.data-processing-table td, .cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.data-processing-table tr:hover, .cookies-table tr:hover {
    background-color: #f8fdf8;
}

/* Cookie-specific styles */
.cookies-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type {
    background-color: #f8fdf8;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4a7759;
}

.cookie-type h4 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background-color: #f8fdf8;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.right-item h4 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.browser-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.browser-item {
    background-color: #f8fdf8;
    padding: 1.5rem;
    border-radius: 8px;
}

.browser-item h4 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.browser-item ol {
    padding-left: 1.5rem;
}

.cookie-settings {
    background-color: #e8f5e8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tool-card {
    background-color: #f8fdf8;
    padding: 1.5rem;
    border-radius: 8px;
}

.tool-card h4 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5f41;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #7ba05b;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie.btn-primary {
    background-color: #7ba05b;
    color: white;
}

.btn-cookie.btn-primary:hover {
    background-color: #6a8f4f;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie.btn-secondary:hover {
    background-color: white;
    color: #2c5f41;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category div {
    flex: 1;
    margin-right: 1rem;
}

.cookie-category h4 {
    color: #2c5f41;
    margin-bottom: 0.5rem;
}

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

/* Switch styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4a7759;
}

input:focus + .slider {
    box-shadow: 0 0 1px #4a7759;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Custom checkboxes */
.checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .article-navigation {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-item {
        max-width: 100%;
    }

    .nav-item.next {
        text-align: left;
    }

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .data-processing-table, .cookies-table {
        font-size: 0.9rem;
    }

    .data-processing-table th, .cookies-table th,
    .data-processing-table td, .cookies-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .services, .about, .features, .testimonials, .cta {
        padding: 3rem 0;
    }

    .btn-primary, .btn-secondary, .btn-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cookie-modal-content {
        padding: 1.5rem;
    }

    .cookie-buttons {
        gap: 0.5rem;
    }

    .btn-cookie {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .header, .footer, .cookie-banner, .cookie-modal {
        display: none;
    }
    
    .legal-content, .article-content {
        padding: 1rem 0;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary, .btn-secondary, .btn-cta {
        border: 2px solid currentColor;
    }
    
    .service-card, .feature-item, .testimonial-card {
        border: 1px solid #333;
    }
}

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

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #4a7759;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1003;
}

.skip-link:focus {
    top: 0;
}
