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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #fbbf24;
}

.floating-nav {
    position: fixed;
    top: 60px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0f172a;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 40px 80px 60px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 520px;
    z-index: 2;
    position: relative;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content-offset p {
    font-size: 19px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -80px;
    top: 15%;
    width: 58%;
    height: 70%;
    transform: rotate(-3deg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    background-color: #cbd5e1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
}

.intro-offset {
    display: flex;
    align-items: center;
    padding: 120px 60px 120px 200px;
    gap: 80px;
}

.intro-text-narrow {
    max-width: 480px;
}

.intro-text-narrow h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-text-narrow p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
}

.intro-visual-right {
    width: 420px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    background-color: #cbd5e1;
    transform: translateY(40px);
}

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

.services-asymmetric {
    padding: 140px 60px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.section-header-left {
    max-width: 560px;
    margin-bottom: 64px;
    margin-left: 80px;
}

.section-header-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-header-left p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.service-card-large {
    width: calc(60% - 16px);
}

.service-card-small {
    width: calc(40% - 16px);
}

.service-card-medium {
    width: calc(50% - 16px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #cbd5e1;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 24px 28px 12px;
}

.service-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 28px 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 28px 20px;
}

.btn-select-service {
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    margin: 0 28px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1e293b;
}

.form-section-overlap {
    padding: 100px 60px 160px;
    position: relative;
}

.form-container-asymmetric {
    max-width: 580px;
    margin-left: 25%;
    background: #ffffff;
    padding: 56px;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    transform: translateX(-60px);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.form-container-asymmetric > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.form-field input,
.form-field textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0f172a;
}

.selected-service-display {
    background: #f1f5f9;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    color: #334155;
    display: none;
}

.selected-service-display.visible {
    display: block;
}

.btn-submit {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 12px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
}

.trust-indicators {
    padding: 120px 60px;
    background: #0f172a;
}

.trust-content-split {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 16px;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: 16px;
    color: #cbd5e1;
    margin-top: 4px;
}

.footer-asymmetric {
    background: #1e293b;
    color: #cbd5e1;
    padding: 80px 60px 40px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 2;
}

.footer-col h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
}

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

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

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-disclaimer strong {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #64748b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: 32px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.cookie-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-content a {
    color: #0f172a;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept {
    background: #0f172a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #1e293b;
}

.btn-cookie-reject {
    background: #e2e8f0;
    color: #0f172a;
}

.btn-cookie-reject:hover {
    background: #cbd5e1;
}

.about-page,
.services-page,
.contact-page,
.thanks-page,
.legal-page {
    padding-top: 40px;
}

.about-hero {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 80px;
}

.about-hero-content {
    flex: 1;
    max-width: 540px;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    max-width: 600px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background-color: #cbd5e1;
}

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

.mission-section {
    padding: 120px 60px;
    background: #f8fafc;
}

.mission-content-asymmetric {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.mission-text p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-visual {
    width: 420px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    background-color: #cbd5e1;
    transform: translateY(-40px);
}

.mission-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 60px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.expertise-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.expertise-content {
    max-width: 1100px;
    margin: 0 auto;
}

.expertise-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.expertise-content > p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 48px;
}

.expertise-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.expertise-item {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
}

.expertise-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.expertise-item p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.cta-about {
    padding: 100px 60px;
}

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

.cta-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.services-header {
    padding: 80px 60px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-header h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 60px 120px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.service-detail-image {
    width: 420px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #cbd5e1;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-includes {
    list-style: none;
    margin: 28px 0;
    padding: 0;
}

.service-includes li {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f172a;
    font-weight: 700;
    font-size: 18px;
}

.btn-service-cta {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 12px;
}

.btn-service-cta:hover {
    background: #1e293b;
}

.service-process {
    padding: 100px 60px;
    background: #f8fafc;
}

.service-process h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 60px;
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    background: #ffffff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.services-cta-section {
    padding: 100px 60px;
}

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

.services-cta-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-header {
    padding: 80px 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
}

.contact-content-split {
    display: flex;
    gap: 80px;
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-area {
    flex: 1;
}

.contact-form-area h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
}

.contact-form-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-area {
    width: 380px;
    flex-shrink: 0;
}

.contact-info-area h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 32px;
}

.contact-detail-block {
    margin-bottom: 32px;
}

.contact-detail-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-detail-block p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.contact-note {
    background: #f1f5f9;
    padding: 24px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.contact-map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 48px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 60px;
}

.submission-summary {
    background: #f8fafc;
    padding: 28px;
    border-radius: 12px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.submission-summary h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.submission-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submission-summary li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

.submission-summary strong {
    color: #0f172a;
}

.thanks-next-steps {
    margin-bottom: 60px;
}

.thanks-next-steps h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
}

.next-steps-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.step-item {
    max-width: 260px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-secondary {
    display: inline-block;
    background: #e2e8f0;
    color: #0f172a;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #cbd5e1;
}

.legal-page {
    padding: 40px 60px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.legal-date,
.legal-subtitle {
    font-size: 16px;
    color: #64748b;
}

.legal-content {
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    margin-top: 32px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    margin-top: 24px;
}

.legal-section p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: #0f172a;
    text-decoration: underline;
}

.cookie-table {
    overflow-x: auto;
    margin: 24px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.cookie-table th {
    background: #f1f5f9;
    padding: 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
}

.cookie-table td {
    padding: 16px;
    font-size: 15px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

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

@media (max-width: 1024px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 0;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 30px;
        gap: 40px;
    }

    .intro-visual-right {
        transform: none;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-small,
    .service-card-medium {
        width: 100%;
    }

    .form-container-asymmetric {
        margin-left: 0;
        transform: none;
    }

    .trust-content-split {
        flex-direction: column;
        gap: 60px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .about-hero {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .about-hero-image {
        width: 100%;
        max-width: 100%;
    }

    .mission-content-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .mission-visual {
        width: 100%;
        transform: none;
    }

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

    .expertise-highlights {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }

    .service-detail-image {
        width: 100%;
    }

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

    .contact-content-split {
        flex-direction: column;
        padding: 60px 30px;
        gap: 60px;
    }

    .contact-info-area {
        width: 100%;
    }

    .next-steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}