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

:root {
    --primary-color: #2d7a3e;
    --primary-dark: #1f5529;
    --primary-light: #4a9c5e;
    --secondary-color: #f7a600;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

h1 {
    font-size: 2rem;
    color: var(--text-dark);
}

h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* Header and Navigation */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-dark);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
}

.nav-menu li {
    padding: 0.75rem 20px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #d89000;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
}

.intro-text {
    font-size: 1.15rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Feature Cards */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.feature-icon img {
    width: 64px;
    height: 64px;
}

/* Content Columns */
.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-text {
    flex: 1;
}

/* Highlight Box */
.highlight-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Service Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Statistics Section */
.stats-section {
    background-color: var(--bg-light);
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

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

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.testimonial-author strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.industry-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.industry-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background-color: var(--bg-white);
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question:after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    background-color: var(--bg-white);
}

.faq-answer.active {
    display: block;
}

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

.knowledge-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

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

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

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

.modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-left: 1.75rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Services Page */
.services-intro {
    background-color: var(--bg-light);
    padding: 2rem 0;
}

.service-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-header {
    background-color: var(--bg-light);
    padding: 1.5rem;
}

.service-title {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-title h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-body {
    padding: 1.5rem;
}

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

.service-details h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-details ul {
    list-style: none;
}

.service-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-details ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-header {
    background-color: var(--primary-color);
    color: white;
}

.comparison-header .comparison-cell {
    color: white;
    font-weight: 700;
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-cell:last-child {
    border-bottom: none;
}

.comparison-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Benefits */
.benefits-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-column {
    flex: 1;
}

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

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

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

.benefit-content {
    flex: 1;
}

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

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

.contact-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.info-item p {
    margin: 0;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Company Info */
.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-info-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

/* Directions */
.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-card {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

/* Service Areas */
.service-areas-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-area-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.value-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.value-icon img {
    width: 64px;
    height: 64px;
}

/* Team Areas */
.team-areas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-area {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.timeline-year {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    height: fit-content;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

/* Achievements */
.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

/* Legal Pages */
.legal-content {
    background-color: var(--bg-white);
}

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

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

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

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

.legal-text ul li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    overflow-x: auto;
    display: block;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

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

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

.thank-you-message {
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

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

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

.step-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.additional-info {
    margin-top: 3rem;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.resource-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.process-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.process-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* CTA Inline */
.cta-inline {
    margin-top: 2rem;
}

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

    h2 {
        font-size: 2rem;
    }

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

    .mobile-toggle {
        display: none;
    }

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

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        padding: 0;
    }

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

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

    .services-cards {
        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);
    }

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

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

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

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

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

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

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .modal-buttons {
        flex-direction: row;
    }

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

    .benefits-columns {
        flex-direction: row;
    }

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

    .contact-card {
        flex: 1;
    }

    .company-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .direction-card {
        flex: 1;
    }

    .service-areas-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-area-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

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

    .team-areas {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

    .service-title {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid var(--border-color);
    }

    .comparison-cell:last-child {
        border-right: none;
    }

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

    .step-item {
        flex: 1;
    }

    .quick-links {
        flex-direction: row;
        justify-content: center;
    }

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

    .resource-card {
        flex: 1;
    }

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

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

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

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

    .feature-card {
        flex: 1 1 calc(33.333% - 1.35rem);
    }

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

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

    .testimonial-card {
        flex: 1 1 calc(33.333% - 1.35rem);
    }

    .knowledge-card {
        flex: 1 1 calc(33.333% - 1.35rem);
    }

    .footer-column {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .process-card {
        flex: 1 1 calc(33.333% - 1.35rem);
    }
}