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

:root {
    --color-primary: #2c1810;
    --color-secondary: #8b4513;
    --color-accent: #d4a574;
    --color-light: #f5f0e8;
    --color-dark: #1a0f0a;
    --color-text: #3d2914;
    --color-text-light: #6b5344;
    --color-white: #ffffff;
    --color-border: #d4c4b0;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --shadow-soft: 0 2px 8px rgba(44, 24, 16, 0.1);
    --shadow-medium: 0 4px 16px rgba(44, 24, 16, 0.15);
    --shadow-strong: 0 8px 32px rgba(44, 24, 16, 0.2);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo svg {
    width: 40px;
    height: 40px;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 2rem;
}

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

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-medium);
    padding: 1rem;
}

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

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background-color: var(--color-light);
    color: var(--color-secondary);
}

/* Hero Section */
.hero {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 1rem;
    text-align: center;
}

.hero h1 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-visual {
    margin-top: 2rem;
}

.hero-visual svg {
    max-width: 300px;
    height: auto;
}

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

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

.btn-primary:hover {
    background-color: #c49664;
    color: var(--color-primary);
}

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

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

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

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

/* Sections */
.section {
    padding: 4rem 1rem;
}

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

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

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

.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

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

.card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: box-shadow var(--transition-medium), transform var(--transition-medium);
}

.card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.card-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Service Cards */
.service-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--color-secondary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

.service-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-light);
}

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

.feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    color: var(--color-secondary);
}

.feature h3 {
    font-size: 1.125rem;
}

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

/* Alternating Content */
.content-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.content-block-text {
    order: 2;
}

.content-block-visual {
    order: 1;
}

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

.content-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-block p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

/* Statistics */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.stat {
    flex: 1 1 140px;
    max-width: 200px;
}

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

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

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

.testimonial {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--color-accent);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}

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

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

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

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

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
}

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

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

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

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

.process-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

/* Trust Indicators */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.trust-badge svg {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Industries */
.industries {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background-color: var(--color-light);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.industry-tag:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

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

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

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

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

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

.contact-item-label {
    font-weight: 600;
    color: var(--color-primary);
    min-width: 120px;
}

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

/* Page Header */
.page-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 3rem 1rem;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
}

/* Team Section */
.team {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-member {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--color-light);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar svg {
    width: 40px;
    height: 40px;
    color: var(--color-secondary);
}

.team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-member .role {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.team-member p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-secondary);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-year {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.timeline-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--color-text-light);
}

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

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

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--color-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

.value-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.value-content p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Quote Block */
.quote-block {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    margin: 2rem 0;
}

.quote-block blockquote {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-block cite {
    font-style: normal;
    opacity: 0.9;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

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

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

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

/* Highlighted Panel */
.highlight-panel {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.highlight-panel h2 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight-panel p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal-content {
    background-color: var(--color-white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.legal-content h2 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
}

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

.legal-content h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    text-decoration: underline;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
}

.thank-you h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thank-you p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.footer-section h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--color-white);
}

.footer-logo svg {
    width: 32px;
    height: 32px;
}

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

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

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

.cookie-banner h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.cookie-banner p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

.cookie-buttons .btn {
    width: 100%;
}

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

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

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

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

.cookie-modal-header h3 {
    font-size: 1.25rem;
}

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

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

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

.cookie-category:last-child {
    margin-bottom: 0;
}

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

.cookie-category h4 {
    font-size: 1rem;
    color: var(--color-primary);
}

.cookie-category p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Toggle Switch */
.toggle {
    position: relative;
    width: 48px;
    height: 24px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-border);
    border-radius: 24px;
    transition: background-color var(--transition-fast);
}

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

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

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

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

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-modal-footer .btn {
    width: 100%;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    z-index: 10001;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
    color: var(--color-white);
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Media Queries */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

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

    .cookie-buttons .btn {
        width: auto;
    }

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 6rem 1rem;
    }

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

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

    .section {
        padding: 5rem 1rem;
    }

    .content-block {
        flex-direction: row;
        text-align: left;
    }

    .content-block-text,
    .content-block-visual {
        flex: 1;
        order: unset;
    }

    .content-block.reverse .content-block-text {
        order: 2;
    }

    .content-block.reverse .content-block-visual {
        order: 1;
    }

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

    .contact-card {
        flex: 1;
    }

    .cookie-modal-footer {
        flex-direction: row;
        justify-content: flex-end;
    }

    .cookie-modal-footer .btn {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

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

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

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

    .team-member {
        flex: 1 1 calc(33.333% - 1rem);
    }

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .section {
        padding: 1rem 0;
    }
}
