:root {
    --color-primary: #1a3a5c;
    --color-secondary: #2c5282;
    --color-accent: #3182ce;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a252f;
    --color-border: #e2e8f0;
    --color-success: #38a169;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul {
    list-style: none;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--color-bg-alt);
}

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

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

.btn-cta {
    background-color: var(--color-primary);
    color: white;
    padding: 14px 32px;
}

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

.btn-cta-large {
    background-color: var(--color-primary);
    color: white;
    padding: 18px 48px;
    font-size: 1.125rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background-color: var(--color-bg-alt);
    padding: 8px 24px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.2s ease;
}

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.2s ease;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-asymmetric {
    display: flex;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 320px;
    padding: 80px 48px;
    display: flex;
    align-items: center;
}

.hero-text-block {
    max-width: 560px;
}

.hero-text-block h1 {
    margin-bottom: 24px;
    font-size: 3rem;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.hero-image-wrapper {
    flex: 1.2;
    min-width: 400px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.intro-offset {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 0;
}

.intro-block {
    flex: 1;
    min-width: 320px;
    padding: 48px;
}

.intro-left {
    padding-left: 10%;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.intro-block h2 {
    margin-bottom: 24px;
}

.intro-visual {
    flex: 1;
    min-width: 320px;
    min-height: 400px;
    position: relative;
    margin-left: 5%;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.features-scattered {
    padding: 100px 48px;
    background-color: var(--color-bg-alt);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 340px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card-offset-1 {
    margin-top: 0;
}

.feature-card-offset-2 {
    margin-top: 60px;
}

.feature-card-offset-3 {
    margin-top: 20px;
}

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

.feature-card h3 {
    margin-bottom: 16px;
}

.highlight-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.highlight-image {
    flex: 1;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.highlight-content {
    flex: 1;
    min-width: 400px;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-content h2 {
    margin-bottom: 24px;
}

.highlight-content > p {
    margin-bottom: 32px;
    color: var(--color-text-light);
}

.highlight-list {
    margin-bottom: 40px;
}

.highlight-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.highlight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.services-preview {
    padding: 100px 48px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header p {
    color: var(--color-text-light);
    margin-top: 16px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
}

.service-large {
    flex: 2;
    min-width: 400px;
}

.service-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.service-info {
    padding: 32px;
}

.service-info h3 {
    margin-bottom: 12px;
}

.service-info p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.service-price {
    display: inline-block;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.stats-band {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 60px 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}

.stat-item {
    text-align: center;
    color: white;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.cta-section {
    padding: 100px 48px;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.footer {
    background-color: var(--color-bg-dark);
    color: #cbd5e0;
    padding: 80px 48px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 16px;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 180px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: #a0aec0;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid #4a5568;
    text-align: center;
    font-size: 0.9rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 24px auto 0;
    font-size: 0.8rem;
    color: #718096;
    text-align: center;
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 100px 48px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    color: white;
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.page-hero-offset {
    text-align: left;
    padding-left: 15%;
}

.about-intro-asymmetric {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 0;
}

.about-text-wide {
    flex: 1.2;
    min-width: 320px;
    padding: 48px;
    padding-left: 10%;
}

.about-text-wide h2 {
    margin-bottom: 24px;
}

.about-text-wide p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.about-image-offset {
    flex: 1;
    min-width: 360px;
    min-height: 400px;
    position: relative;
    margin-right: -5%;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
}

.about-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.values-scattered {
    padding: 80px 48px;
    background-color: var(--color-bg-alt);
}

.section-intro-left {
    max-width: 1200px;
    margin: 0 auto 48px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.value-offset-a { margin-top: 0; }
.value-offset-b { margin-top: 40px; }
.value-offset-c { margin-top: 20px; }
.value-offset-d { margin-top: 60px; }

.value-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 12px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.team-section {
    padding: 80px 48px;
}

.team-header-offset {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding-left: 20%;
}

.team-header-offset h2 {
    margin-bottom: 12px;
}

.team-header-offset p {
    color: var(--color-text-light);
}

.team-description {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.team-text {
    flex: 1;
    min-width: 320px;
}

.team-text p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.team-image {
    flex: 1;
    min-width: 360px;
    min-height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.approach-section {
    padding: 80px 48px;
    background: linear-gradient(180deg, var(--color-bg-alt), white);
}

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

.approach-content h2 {
    text-align: center;
    margin-bottom: 48px;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.approach-step {
    flex: 1;
    min-width: 200px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
}

.step-marker {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.approach-step h3 {
    margin-bottom: 12px;
}

.cta-about {
    background: var(--color-primary);
}

.cta-about .cta-content h2,
.cta-about .cta-content p {
    color: white;
}

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

.cta-about .btn-cta-large:hover {
    background-color: var(--color-bg-alt);
}

.services-intro {
    padding: 60px 48px;
    background-color: var(--color-bg-alt);
}

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

.services-full {
    padding: 40px 0;
}

.service-block {
    display: flex;
    flex-wrap: wrap;
    min-height: 450px;
    margin-bottom: 40px;
}

.service-block-left .service-block-image {
    order: 1;
}

.service-block-left .service-block-content {
    order: 2;
}

.service-block-right .service-block-image {
    order: 2;
}

.service-block-right .service-block-content {
    order: 1;
}

.service-block-image {
    flex: 1;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}

.service-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.service-block-content {
    flex: 1;
    min-width: 400px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.service-block-content h2 {
    margin-bottom: 20px;
}

.service-block-content > p {
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.service-features {
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

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

.service-pricing {
    margin-bottom: 24px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-right: 8px;
}

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

.service-block-center {
    justify-content: center;
    background-color: var(--color-bg-alt);
    padding: 80px 48px;
}

.service-content-wide {
    max-width: 900px;
    text-align: center;
}

.service-grid-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 40px 0;
}

.service-mini {
    background: white;
    padding: 24px 32px;
    border-radius: var(--radius-md);
    min-width: 220px;
    box-shadow: var(--shadow-sm);
}

.service-mini h4 {
    margin-bottom: 8px;
}

.price-inline {
    color: var(--color-accent);
    font-weight: 700;
}

.services-form-section {
    padding: 80px 48px;
    background-color: var(--color-bg-dark);
}

.form-section-content {
    max-width: 640px;
    margin: 0 auto;
}

.form-section-content h2 {
    color: white;
    margin-bottom: 12px;
}

.form-section-content > p {
    color: #a0aec0;
    margin-bottom: 32px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
}

.form-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-consent {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.page-hero-contact {
    min-height: 300px;
}

.contact-main {
    padding: 80px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    min-width: 200px;
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-accent);
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-details-section {
    background: var(--color-bg-alt);
    padding: 48px;
    border-radius: var(--radius-md);
}

.contact-text h2 {
    margin-bottom: 20px;
}

.contact-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.contact-text h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.transport-list {
    margin-bottom: 24px;
}

.transport-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.transport-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.contact-form-section {
    padding: 80px 48px;
    background-color: var(--color-bg-alt);
}

.form-container-wide {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 32px;
}

.form-intro h2 {
    margin-bottom: 12px;
}

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

.thanks-section {
    padding: 120px 48px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    color: var(--color-success);
    margin-bottom: 32px;
}

.thanks-content h1 {
    margin-bottom: 24px;
}

.thanks-service {
    background: var(--color-bg-alt);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.thanks-note {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-top: 16px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-info {
    padding: 80px 48px;
    background-color: var(--color-bg-alt);
}

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

.thanks-info h2 {
    text-align: center;
    margin-bottom: 48px;
}

.steps-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.step-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: var(--radius-md);
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    line-height: 48px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    margin-bottom: 12px;
}

.legal-hero {
    background: var(--color-bg-dark);
    padding: 80px 48px;
    color: white;
}

.legal-hero h1 {
    color: white;
    margin-bottom: 12px;
}

.legal-hero p {
    opacity: 0.8;
}

.legal-content {
    padding: 60px 48px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.legal-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-article h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-article p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.legal-article ul,
.legal-article ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-article ul {
    list-style: disc;
}

.legal-article ol {
    list-style: decimal;
}

.legal-article li {
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.legal-article ul ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookies-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-text);
}

.cookies-table td {
    color: var(--color-text-light);
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: var(--color-text-light);
}

@media (max-width: 1024px) {
    .nav-main {
        padding: 16px 24px;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .intro-left {
        padding-left: 48px;
    }

    .intro-visual {
        margin-left: 0;
        border-radius: var(--radius-lg);
    }

    .about-text-wide {
        padding-left: 48px;
    }

    .about-image-offset {
        margin-right: 0;
        border-radius: var(--radius-lg);
    }

    .team-header-offset {
        padding-left: 0;
    }

    .page-hero-offset {
        padding-left: 48px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-image-wrapper {
        min-width: 100%;
        min-height: 300px;
    }

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

    .intro-block,
    .intro-visual {
        min-width: 100%;
    }

    .intro-left,
    .about-text-wide {
        padding: 32px 24px;
    }

    .features-scattered {
        padding: 60px 24px;
    }

    .feature-card-offset-1,
    .feature-card-offset-2,
    .feature-card-offset-3 {
        margin-top: 0;
    }

    .highlight-image,
    .highlight-content {
        min-width: 100%;
    }

    .highlight-content {
        padding: 48px 24px;
    }

    .services-preview,
    .stats-band,
    .cta-section {
        padding: 60px 24px;
    }

    .service-large {
        min-width: 100%;
    }

    .value-offset-a,
    .value-offset-b,
    .value-offset-c,
    .value-offset-d {
        margin-top: 0;
    }

    .service-block-image,
    .service-block-content {
        min-width: 100%;
    }

    .service-block-left .service-block-image,
    .service-block-right .service-block-image {
        order: 1;
    }

    .service-block-left .service-block-content,
    .service-block-right .service-block-content {
        order: 2;
    }

    .service-block-content {
        padding: 40px 24px;
    }

    .services-form-section {
        padding: 60px 24px;
    }

    .contact-form {
        padding: 24px;
    }

    .page-hero,
    .legal-hero {
        padding: 60px 24px;
    }

    .page-hero-offset {
        text-align: center;
        padding-left: 24px;
    }

    .contact-main {
        padding: 48px 24px;
    }

    .contact-details-section {
        padding: 32px 24px;
    }

    .thanks-section {
        padding: 80px 24px;
    }

    .footer {
        padding: 48px 24px 32px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-cta-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

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

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn {
        width: 100%;
    }
}
