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

:root {
    --color-primary: #2d5a4a;
    --color-primary-dark: #1e3d32;
    --color-secondary: #c9a96e;
    --color-accent: #8b6914;
    --color-bg: #fafaf8;
    --color-bg-alt: #f0ede6;
    --color-bg-dark: #e8e4db;
    --color-text: #2c2c2c;
    --color-text-light: #5a5a5a;
    --color-text-muted: #7a7a7a;
    --color-white: #ffffff;
    --color-border: #d4d0c7;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --max-width: 1200px;
    --border-radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--color-primary-dark);
}

h1 { font-size: 2rem; margin-bottom: var(--spacing-md); }
h2 { font-size: 1.75rem; margin-bottom: var(--spacing-md); }
h3 { font-size: 1.35rem; margin-bottom: var(--spacing-sm); }
h4 { font-size: 1.15rem; margin-bottom: var(--spacing-xs); }

p { margin-bottom: var(--spacing-sm); }

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

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

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

ul, ol { padding-left: var(--spacing-md); margin-bottom: var(--spacing-sm); }

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

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

/* Navigation */
.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    padding: 0;
    margin: 0;
}

.nav-desktop a {
    color: var(--color-text);
    font-weight: 500;
    padding: var(--spacing-xs) 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: var(--spacing-sm);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-mobile li {
    border-bottom: 1px solid var(--color-border);
}

.nav-mobile li:last-child {
    border-bottom: none;
}

.nav-mobile a {
    display: block;
    padding: var(--spacing-sm);
    color: var(--color-text);
    font-weight: 500;
}

.nav-mobile a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

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

.hero h1 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

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

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

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

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

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header p {
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-sm);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

/* Service Cards */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.service-card h3 {
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

.service-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: var(--spacing-sm);
}

/* Feature Blocks */
.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-content h4 {
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    color: var(--color-text-light);
    margin: 0;
}

/* Testimonials */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.testimonial {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-secondary);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: var(--spacing-sm);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    padding-top: var(--spacing-md);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-primary-dark);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Statistics */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
}

.section-dark .stat-number {
    color: var(--color-secondary);
}

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

.section-dark .stat-label {
    color: rgba(255,255,255,0.8);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

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

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--color-text-light);
}

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

/* Process Steps */
.process-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-content h4 {
    margin-bottom: var(--spacing-xs);
}

.process-content p {
    color: var(--color-text-light);
    margin: 0;
}

/* Contact Info */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-block {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--color-bg-alt);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details h4 {
    margin-bottom: 2px;
}

.contact-details p {
    color: var(--color-text-light);
    margin: 0;
}

/* Quote Block */
.quote-block {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-bg-alt);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-primary-dark);
    max-width: 800px;
    margin: 0 auto var(--spacing-sm);
}

.quote-author {
    color: var(--color-text-muted);
}

/* Comparison Table */
.comparison-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    min-width: 500px;
}

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

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

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

.comparison-table tr:nth-child(even) {
    background: var(--color-bg-alt);
}

/* Highlight Panel */
.highlight-panel {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    color: var(--color-primary-dark);
    text-align: center;
}

.highlight-panel h3 {
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
}

/* Icons Grid */
.icons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.icon-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    max-width: 180px;
}

.icon-item svg {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-sm);
}

.icon-item span {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Alternating Content */
.content-row {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.content-row:last-child {
    margin-bottom: 0;
}

.content-text {
    flex: 1;
}

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

.content-visual svg {
    max-width: 200px;
    height: auto;
}

/* Milestones */
.milestones-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: relative;
}

.milestone {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.milestone-year {
    flex-shrink: 0;
    width: 70px;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.milestone-content {
    flex: 1;
    padding-bottom: var(--spacing-md);
    border-left: 2px solid var(--color-border);
    padding-left: var(--spacing-md);
    position: relative;
}

.milestone-content::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.milestone:last-child .milestone-content {
    border-left-color: transparent;
}

/* Trust Indicators */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
}

.trust-item {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 200px;
}

.trust-item svg {
    width: 40px;
    height: 40px;
    margin-bottom: var(--spacing-xs);
}

.trust-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

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

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

/* Footer */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

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

.footer-col li {
    margin-bottom: var(--spacing-xs);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--spacing-md);
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: var(--max-width);
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cookie-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    transition: all var(--transition);
}

.cookie-btn-accept {
    background: var(--color-secondary);
    color: var(--color-primary-dark);
}

.cookie-btn-accept:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--color-white);
}

.cookie-btn-settings:hover {
    background: rgba(255,255,255,0.1);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
}

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

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

.cookie-modal-header {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 0;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--color-text);
}

.cookie-modal-body {
    padding: var(--spacing-md);
}

.cookie-option {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.cookie-option h4 {
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

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

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--color-border);
    border-radius: 26px;
    transition: var(--transition);
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--color-primary);
}

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

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

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

.cookie-modal-footer {
    padding: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

/* Legal Pages */
.legal-content {
    padding: var(--spacing-xl) 0;
}

.legal-content h1 {
    margin-bottom: var(--spacing-lg);
}

.legal-content h2 {
    margin-top: var(--spacing-lg);
    font-size: 1.4rem;
}

.legal-content h3 {
    margin-top: var(--spacing-md);
    font-size: 1.15rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--spacing-md);
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
}

/* Thank You Page */
.thank-you-section {
    text-align: center;
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content svg {
    width: 100px;
    height: 100px;
    margin-bottom: var(--spacing-md);
}

.thank-you-content h1 {
    margin-bottom: var(--spacing-sm);
}

.thank-you-content p {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--spacing-sm);
    z-index: 10001;
}

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

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

/* Focus Styles */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.5rem; }

    .container {
        padding: 0 var(--spacing-md);
    }

    .menu-toggle {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

    .nav-mobile {
        display: none !important;
    }

    .hero {
        padding: 5rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .service-card {
        flex: 1;
        min-width: 280px;
    }

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

    .feature-item {
        flex: 1;
        min-width: 280px;
    }

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

    .testimonial {
        flex: 1;
        min-width: 280px;
    }

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

    .contact-info-block {
        flex: 1;
    }

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

    .content-row:nth-child(even) {
        flex-direction: row-reverse;
    }

    .content-visual svg {
        max-width: 300px;
    }

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

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

    .footer-col {
        flex: 1;
        max-width: 250px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        gap: var(--spacing-lg);
    }

    .service-card {
        min-width: 320px;
    }
}
