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

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

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

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

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

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

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

a:hover {
    color: #1a3320;
}

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

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

.btn-primary:hover {
    background-color: #1a3320;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
}

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

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

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

/* Header */
.header {
    background-color: #ffffff;
    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;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5530;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5530;
    text-decoration: none;
}

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

.nav-menu a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5530;
}

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

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem 0;
    margin-left: 40px;
}

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

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

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

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-icon svg {
    stroke: #2c5530;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-link {
    color: #2c5530;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-link:hover {
    border-bottom-color: #2c5530;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature svg {
    flex-shrink: 0;
}

.feature span {
    color: #555;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #2c5530;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
    margin: 0;
    color: #555;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #1a3320 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: #d4edda;
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-content {
    display: flex;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.contact-item p {
    margin: 0;
    color: #555;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c5530;
    font-weight: 500;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #2c5530;
    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 p {
    color: #d4edda;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #d4edda;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    color: #d4edda;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #d4edda;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c5530;
    color: white;
    padding: 1.5rem;
    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;
}

.cookie-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.cookie-content p {
    color: #d4edda;
    margin-bottom: 1.5rem;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

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

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

.modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2c5530;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.cookie-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.cookie-switch input {
    display: none;
}

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

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

.cookie-switch input:checked + .slider {
    background-color: #2c5530;
}

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

.cookie-switch input:disabled + .slider {
    background-color: #2c5530;
    opacity: 0.7;
}

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

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

/* Legal Pages */
.legal-page {
    padding: 5rem 0;
    background-color: white;
}

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

.legal-content h1 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5530;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-info p {
    margin: 0;
    color: #2c5530;
}

/* Service Pages */
.page-header {
    background: linear-gradient(135deg, #2c5530 0%, #1a3320 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: #d4edda;
    font-size: 1.2rem;
}

.services-detail {
    padding: 5rem 0;
    background-color: white;
}

.service-card.featured {
    border: 2px solid #2c5530;
}

.service-features {
    margin-top: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #555;
}

.process {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5530;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

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

/* Service Detail Pages */
.service-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.service-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    flex-shrink: 0;
}

.service-header-text h1 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.service-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
}

.service-content {
    padding: 5rem 0;
}

.service-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail h2 {
    margin-bottom: 1.5rem;
    color: #2c5530;
}

.service-detail h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5530;
}

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

.feature-card h4 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.feature-card p {
    margin: 0;
    color: #555;
}

.case-studies {
    margin: 2rem 0;
}

.case-study {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.case-study h4 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.case-study p {
    margin: 0;
    color: #555;
}

.case-details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.case-tag {
    background: #2c5530;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.case-outcome {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.cta-section {
    background: linear-gradient(135deg, #2c5530 0%, #1a3320 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #d4edda;
    margin-bottom: 2rem;
}

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

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

.newsletter-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.newsletter-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
}

.newsletter-benefits {
    margin-bottom: 3rem;
}

.newsletter-benefits h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c5530;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

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

.benefit-content h3 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.benefit-content p {
    margin: 0;
    color: #555;
}

.newsletter-form-container {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.newsletter-form-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c5530;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #2c5530;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkbox-custom {
    background-color: #2c5530;
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
}

.checkbox-label input {
    display: none;
}

.consent-checkbox {
    margin-top: 1rem;
}

.consent-checkbox a {
    color: #2c5530;
    text-decoration: underline;
}

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

.info-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.info-section h3 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.info-section p {
    margin: 0;
    color: #555;
}

.newsletter-sample {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.newsletter-sample h3 {
    margin-bottom: 1.5rem;
    color: #2c5530;
}

.sample-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.sample-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.sample-header h4 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.sample-date {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.sample-article {
    margin-bottom: 1.5rem;
}

.sample-article h5 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.sample-article p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you-page {
    padding: 5rem 0;
    background-color: white;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.thank-you-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.detail-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5530;
}

.detail-icon {
    margin-bottom: 1rem;
}

.detail-content h3 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.detail-content p {
    margin: 0;
    color: #555;
}

.newsletter-benefits-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.newsletter-benefits-preview h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c5530;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item svg {
    flex-shrink: 0;
}

.benefit-item span {
    color: #555;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c5530;
}

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

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

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

.contact-offer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.contact-offer h3 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.contact-offer p {
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-media-follow {
    margin-bottom: 3rem;
}

.social-media-follow h3 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.social-media-follow p {
    margin-bottom: 1.5rem;
    color: #555;
}

.social-links-large {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links-large a:hover {
    color: #1a3320;
}

.return-home {
    margin-top: 2rem;
}

/* Cookie Policy Specific */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-settings-button {
    text-align: center;
    margin: 2rem 0;
}

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

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

.browser-links a {
    color: #2c5530;
    text-decoration: underline;
}

/* Service Detail Specific Styles */
.process-timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.timeline-content p {
    margin: 0;
    color: #555;
}

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

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

.country-flag {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.country-card h4 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.country-card p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

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

.stat-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #2c5530;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2c5530;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #555;
    font-size: 0.9rem;
}

.common-errors {
    margin: 2rem 0;
}

.error-category {
    margin-bottom: 2rem;
}

.error-category h4 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.error-list {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.error-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.error-item:last-child {
    margin-bottom: 0;
}

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

.error-content h5 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.error-content p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

.common-mistakes {
    margin: 2rem 0;
}

.mistake-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.mistake-item:last-child {
    margin-bottom: 0;
}

.mistake-item svg {
    flex-shrink: 0;
}

.mistake-item h4 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.mistake-item p {
    margin: 0;
    color: #555;
}

.topic-section {
    margin-bottom: 2rem;
}

.topic-section h4 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.topic-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

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

.topic-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

.formula-box {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #2c5530;
}

.formula-box p {
    margin: 0;
    color: #2c5530;
    font-weight: 500;
}

.approach-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.step-item:last-child {
    margin-bottom: 0;
}

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

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

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

.deadlines-info {
    margin: 2rem 0;
}

.deadline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.deadline-item:last-child {
    margin-bottom: 0;
}

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

.deadline-content h4 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.deadline-content p {
    margin: 0;
    color: #555;
}

.challenges {
    margin: 2rem 0;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.challenge-item:last-child {
    margin-bottom: 0;
}

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

.challenge-content h4 {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.challenge-content p {
    margin: 0;
    color: #555;
}

.documents-checklist {
    margin: 2rem 0;
}

.document-category {
    margin-bottom: 2rem;
}

.document-category h4 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.document-list {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    list-style: none;
}

.document-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.document-list li:last-child {
    margin-bottom: 0;
}

.document-list svg {
    flex-shrink: 0;
}

.document-list span {
    color: #555;
}

.required-documents {
    margin: 2rem 0;
}

.document-section {
    margin-bottom: 2rem;
}

.document-section h4 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.document-checklist {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    list-style: none;
}

.document-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.document-checklist li:last-child {
    margin-bottom: 0;
}

.document-checklist svg {
    flex-shrink: 0;
}

.document-checklist span {
    color: #555;
}

.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 2rem 0;
}

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

.warning-content h4 {
    margin-bottom: 0.5rem;
    color: #856404;
}

.warning-content p {
    margin: 0;
    color: #856404;
}

.success-story {
    background: #d4edda;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin: 2rem 0;
}

.success-story h3 {
    margin-bottom: 1rem;
    color: #155724;
}

.story-content blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #155724;
    font-size: 1.1rem;
}

.story-content cite {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-process {
    margin: 2rem 0;
}

.step-details {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.detail-tag {
    background: #2c5530;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.case-highlights {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.highlight {
    background: #e8f5e8;
    color: #2c5530;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(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);
    }

    .nav-container {
        padding: 0 20px;
    }
    
    .hero-content {
        margin-left: 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        text-align: center;
    }

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

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

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

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

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

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

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

    .cookie-buttons {
        flex-direction: column;
    }

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

    .thank-you-details {
        grid-template-columns: 1fr;
    }

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

    .contact-options {
        flex-direction: column;
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

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

    .impact-statistics {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

    .warning-box {
        flex-direction: column;
        text-align: center;
    }

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

    .newsletter-info {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        justify-content: center;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

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

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .newsletter-form-container {
        padding: 2rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .case-details {
        flex-direction: column;
    }

    .step-details {
        flex-direction: column;
    }

    .case-highlights {
        flex-direction: column;
    }

    .detail-tag,
    .case-tag,
    .case-outcome,
    .highlight {
        text-align: center;
    }
}
