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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #1f5429;
}

ul {
    list-style: none;
}

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

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a3e;
}

/* Navigation */
.nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.nav-list.active {
    display: flex;
}

.nav-list li {
    padding: 0.5rem 20px;
}

.nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: #333;
    font-weight: 500;
}

.nav-list a:hover,
.nav-list a.active {
    color: #2d7a3e;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2d7a3e;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1f5429;
    color: #fff;
}

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

.btn-secondary:hover {
    background-color: #2d7a3e;
    color: #fff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-text {
    background: transparent;
    color: #666;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f7f1 0%, #e6f2e8 100%);
    padding: 4rem 0;
}

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

.hero h1 {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2d7a3e 0%, #1f5429 100%);
    padding: 3rem 0;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2d7a3e;
    margin-bottom: 0.5rem;
}

/* Philosophy Section */
.philosophy {
    background-color: #f9fafb;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-text p {
    margin-bottom: 1.25rem;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-icon {
    max-width: 200px;
    width: 100%;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

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

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

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

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #2d7a3e 0%, #1f5429 100%);
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d7a3e;
}

.step-number {
    display: inline-block;
    background-color: #2d7a3e;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.benefit-icon img {
    width: 50px;
    height: 50px;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    background-color: #f9fafb;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

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

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid #2d7a3e;
}

.value-card h3 {
    color: #2d7a3e;
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-served {
    background-color: #f9fafb;
}

.industries-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.industries-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.industry-item h3 {
    color: #2d7a3e;
    margin-bottom: 0.75rem;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: #2d7a3e;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    color: #555;
    line-height: 1.7;
}

/* Trust Indicators */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

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

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2d7a3e 0%, #1f5429 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Services Page */
.services-intro {
    font-size: 1.125rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-detail {
    margin-bottom: 4rem;
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-detail-icon img {
    width: 70px;
    height: 70px;
}

.service-tagline {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
}

.service-features {
    margin: 2rem 0;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.service-features h3 {
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: disc;
    padding-left: 1.5rem;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2d7a3e;
}

.price-card h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d7a3e;
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 0;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-box {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.benefit-box h3 {
    color: #2d7a3e;
    margin-bottom: 1rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2d7a3e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-card-icon {
    margin-bottom: 1.5rem;
}

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

.contact-card h2 {
    margin-bottom: 1.5rem;
    color: #2d7a3e;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-directions {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.location-directions h3 {
    margin-bottom: 1rem;
}

.location-directions ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.location-directions li {
    margin-bottom: 0.5rem;
    color: #555;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-detail-item {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
}

.company-detail-item h3 {
    font-size: 1rem;
    color: #2d7a3e;
    margin-bottom: 0.5rem;
}

.company-detail-item p {
    margin-bottom: 0;
    color: #555;
}

.regions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.region-item h3 {
    color: #2d7a3e;
    margin-bottom: 0.5rem;
}

.response-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.response-item h3 {
    color: #2d7a3e;
    margin-bottom: 0.5rem;
}

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

/* About Page */
.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 3rem;
    text-align: center;
}

.team-structure {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-department {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d7a3e;
}

.team-department h3 {
    color: #2d7a3e;
    margin-bottom: 1rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #2d7a3e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    color: #2d7a3e;
}

.mission-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

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

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

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.expertise-item h3 {
    color: #2d7a3e;
    margin-bottom: 1rem;
}

.approach-intro {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.approach-principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d7a3e;
}

.principle h3 {
    color: #2d7a3e;
    margin-bottom: 1rem;
}

.learning-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, #2d7a3e 0%, #1f5429 100%);
    padding: 4rem 0;
    color: #fff;
}

.thank-you-content {
    text-align: center;
}

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

.thank-you-icon img {
    width: 80px;
    height: 80px;
}

.thank-you-hero h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    opacity: 0.95;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.step-card .step-number {
    margin: 0 auto 1rem;
}

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

.meanwhile-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.meanwhile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.link-card h3 {
    color: #2d7a3e;
    margin-bottom: 0.5rem;
}

.reminder-content {
    text-align: center;
    background-color: #f9fafb;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.email-highlight {
    font-size: 1.5rem;
    font-weight: 600;
}

.email-highlight a {
    color: #2d7a3e;
}

/* Legal Pages */
.legal-hero {
    background: linear-gradient(135deg, #2d7a3e 0%, #1f5429 100%);
    padding: 3rem 0;
    color: #fff;
}

.legal-hero h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d7a3e;
}

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

.legal-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.legal-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: #ccc;
    font-size: 0.9375rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-col a:hover {
    color: #2d7a3e;
}

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

.footer-bottom p {
    color: #888;
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-modal-header h3 {
    margin-bottom: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: #333;
}

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

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

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin-bottom: 0;
}

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

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

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

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #2d7a3e;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

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

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-list li {
        padding: 0;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
        flex-direction: row;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .philosophy-content {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-text {
        flex: 1 1 60%;
    }

    .philosophy-visual {
        flex: 1 1 40%;
    }

    .service-detail-header {
        flex-direction: row;
        align-items: center;
    }

    .service-pricing {
        flex-direction: row;
    }

    .price-card {
        flex: 1;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-box {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .location-content {
        flex-direction: row;
    }

    .location-text {
        flex: 1 1 60%;
    }

    .location-directions {
        flex: 1 1 40%;
    }

    .company-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .company-detail-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .regions {
        flex-direction: row;
    }

    .region-item {
        flex: 1;
    }

    .response-grid {
        flex-direction: row;
    }

    .response-item {
        flex: 1;
    }

    .team-structure {
        flex-direction: row;
    }

    .team-department {
        flex: 1;
    }

    .achievements-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .achievement-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .expertise-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expertise-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .approach-principles {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .principle {
        flex: 1 1 calc(50% - 1rem);
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

    .meanwhile-links {
        flex-direction: row;
    }

    .link-card {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-actions {
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1 1 33.333%;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1 1 25%;
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1 1 25%;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1 1 33.333%;
    }

    .industries-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-pricing {
        flex-wrap: nowrap;
    }

    .achievements-grid {
        flex-wrap: nowrap;
    }

    .achievement-card {
        flex: 1 1 25%;
    }
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

*:focus-visible {
    outline: 2px solid #2d7a3e;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid #2d7a3e;
    outline-offset: 2px;
}