:root {
    --color-primary: #2d7a3e;
    --color-primary-dark: #1f5a2d;
    --color-primary-light: #4a9d5f;
    --color-secondary: #f4a941;
    --color-accent: #3b9dd8;
    --color-text: #2c3e50;
    --color-text-light: #6c757d;
    --color-background: #ffffff;
    --color-background-light: #f8f9fa;
    --color-background-gray: #e9ecef;
    --color-border: #dee2e6;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-background);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

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

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    margin: 3px 0;
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

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

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

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

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

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: white;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

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

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
}

.statistics {
    padding: 3rem 0;
    background-color: var(--color-background-light);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

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

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

section {
    padding: 4rem 0;
}

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

.content-columns {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.content-columns .column {
    flex: 1;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-card {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    background-color: var(--color-background-light);
    border-left: 4px solid var(--color-primary);
    border-radius: 5px;
}

.insight-card h3 {
    color: var(--color-primary);
}

.philosophy {
    background-color: var(--color-background-light);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.values-list {
    margin-top: 2rem;
    text-align: left;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-item img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

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

.process {
    background-color: white;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: var(--color-background-light);
}

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

.testimonials {
    background-color: var(--color-background-light);
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.industry-item {
    text-align: center;
    flex-basis: 150px;
}

.industry-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.industry-item h4 {
    font-size: 1rem;
    color: var(--color-text);
}

.faq {
    background-color: white;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: var(--transition);
}

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

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

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

.trust-indicators {
    background-color: white;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.trust-item {
    text-align: center;
    flex-basis: 150px;
}

.trust-item img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.cta-final {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.footer {
    background-color: var(--color-text);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: var(--color-secondary);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-text);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--color-secondary);
}

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

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

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

.cookie-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
}

.cookie-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: 0.25rem;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-box h2 {
    color: white;
}

.milestones {
    background-color: white;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

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

.values {
    background-color: var(--color-background-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    text-align: center;
}

.value-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.team {
    background-color: white;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--color-background-light);
    border-radius: 10px;
}

.benefit-item img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.case-study {
    background-color: var(--color-background-light);
}

.case-content {
    max-width: 1000px;
    margin: 0 auto;
}

.case-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-primary);
}

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

.case-meta {
    color: var(--color-text-light);
    font-style: italic;
}

.case-details {
    display: flex;
    gap: 3rem;
}

.case-col {
    flex: 1;
}

.case-col h4 {
    color: var(--color-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.case-col h4:first-child {
    margin-top: 0;
}

.case-results {
    list-style: none;
    padding: 0;
}

.case-results li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.case-results li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.case-quote {
    font-style: italic;
    padding: 1rem;
    border-left: 4px solid var(--color-primary);
    background-color: var(--color-background-light);
    margin-top: 1.5rem;
}

.cta-section {
    background-color: var(--color-background-light);
}

.services-detailed {
    background-color: white;
}

.service-full {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid var(--color-border);
}

.service-full:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.service-icon-large img {
    width: 100%;
    height: 100%;
}

.service-tagline {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin: 0;
}

.service-body h3 {
    color: var(--color-primary);
    margin-top: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-background-light);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    text-align: center;
}

.price-card.featured {
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.price-card h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.price-features li:last-child {
    border-bottom: none;
}

.service-benefits {
    background-color: var(--color-background-light);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-box {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    text-align: center;
}

.benefit-box img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.benefit-box h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.process-overview {
    background-color: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.contact-info {
    background-color: white;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--color-background-light);
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.contact-icon img {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.about-office {
    background-color: var(--color-background-light);
}

.office-illustration img {
    width: 100%;
}

.company-details {
    background-color: white;
}

.details-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--color-background-light);
    border-radius: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--color-text);
}

.detail-value {
    color: var(--color-text-light);
}

.departments {
    background-color: var(--color-background-light);
}

.departments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.department-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
}

.department-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.regional-presence {
    background-color: white;
}

.regions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.region-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--color-background-light);
    border-radius: 10px;
}

.region-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.regions-note {
    text-align: center;
    font-style: italic;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 2rem auto 0;
}

.thank-you-hero {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you-icon img {
    width: 100%;
    height: 100%;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.next-steps {
    background-color: white;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--color-background-light);
    border-radius: 10px;
    text-align: center;
}

.step-card .step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.while-you-wait {
    background-color: var(--color-background-light);
}

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

.resource-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    text-align: center;
}

.resource-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.resource-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.legal-content {
    background-color: white;
}

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

.legal-text h2 {
    color: var(--color-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h4 {
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

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

.cookies-table th {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
}

.cookies-table tr:hover {
    background-color: var(--color-background-light);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero .container {
        flex-direction: column;
    }

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

    .stats-grid {
        flex-direction: column;
    }

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

    .services-grid,
    .insights-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .benefits-grid,
    .pricing-table,
    .contact-grid,
    .departments-grid,
    .regions-grid,
    .resources-grid {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

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

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

    .timeline-item,
    .timeline-step {
        flex-direction: column;
        gap: 1rem;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .cookies-table {
        font-size: 0.875rem;
    }

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

    .thank-you-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }
}
