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

html {
    scroll-behavior: smooth;
}

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

.ad-disclosure {
    background: #f0f0f0;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 4rem 5% 4rem 8%;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-offset {
    flex: 1;
    padding-right: 2rem;
    transform: translateY(-2rem);
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual-block {
    flex: 1;
    transform: translateY(2rem) translateX(1.5rem) rotate(2deg);
}

.hero-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.intro-diagonal {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: #fff;
    transform: skewY(-1deg);
    margin: 4rem 0;
}

.intro-diagonal > * {
    transform: skewY(1deg);
}

.intro-text-narrow {
    flex: 2;
    max-width: 650px;
}

.intro-text-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text-narrow p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
}

.intro-stat-card {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #0066cc;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
}

.approach-offset {
    display: flex;
    padding: 5rem 5%;
    gap: 5rem;
    align-items: flex-start;
}

.approach-left {
    flex: 1;
    transform: translateY(3rem);
}

.approach-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.approach-right {
    flex: 1.3;
}

.approach-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.approach-right p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    min-width: 60px;
}

.step-text {
    font-size: 1.1rem;
    color: #333;
}

.link-arrow {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 0.5rem;
}

.link-arrow::after {
    content: '→';
    margin-left: 0.5rem;
}

.services-preview-cards {
    padding: 5rem 5% 5rem 10%;
    background: #f8f9fa;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    transform: translateX(-3rem);
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-elevated {
    flex: 1 1 calc(45% - 1rem);
    transform: translateY(-1.5rem);
}

.card-offset-top {
    flex: 1 1 calc(45% - 1rem);
    transform: translateY(1.5rem);
}

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

.card-narrow {
    flex: 1 1 calc(35% - 1rem);
    transform: translateX(2rem);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin-top: auto;
}

.testimonial-overlap {
    padding: 4rem 5%;
    background: #1a1a1a;
    margin: 4rem 0;
    position: relative;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #0066cc;
    transform: translateX(3rem);
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content cite {
    color: #ccc;
    font-size: 1rem;
    font-style: normal;
}

.impact-visual {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.impact-left-text {
    flex: 1.2;
}

.impact-left-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.impact-left-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.impact-list {
    list-style: none;
    padding-left: 0;
}

.impact-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    color: #333;
    font-size: 1.05rem;
}

.impact-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.impact-right-image {
    flex: 1;
    transform: translateX(-2rem) rotate(-1deg);
}

.impact-right-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
}

.form-container-offset {
    max-width: 650px;
    margin: 0 auto;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateX(-5rem);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-container-offset > p {
    color: #555;
    margin-bottom: 2rem;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.trust-elements {
    padding: 4rem 5%;
    text-align: center;
}

.trust-elements h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-item strong {
    font-size: 2.5rem;
    color: #0066cc;
}

.trust-item span {
    color: #555;
    max-width: 200px;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,102,204,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,102,204,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #0066cc;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #0052a3;
}

.btn-cookie-reject {
    background: #444;
    color: #fff;
}

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

.page-header-offset {
    padding: 4rem 5% 2rem 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-header-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.header-intro {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #333;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-pricing-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #0066cc;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-services {
    padding: 4rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.about-header {
    padding: 4rem 5% 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.about-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-intro {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1.3;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.values-offset {
    padding: 5rem 8% 5rem 5%;
    background: #f8f9fa;
}

.values-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.expertise-section {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.expertise-left {
    flex: 1;
}

.expertise-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.expertise-left p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.expertise-right {
    flex: 1;
}

.expertise-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-block {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: #555;
    font-size: 1rem;
}

.approach-philosophy {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.approach-philosophy h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.approach-item p {
    color: #555;
    line-height: 1.6;
}

.testimonials-about {
    padding: 5rem 5%;
}

.testimonials-about h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-quote {
    background: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
}

.testimonial-quote cite {
    display: block;
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
    font-style: normal;
}

.cta-about {
    padding: 4rem 5%;
    background: #1a1a1a;
    text-align: center;
    margin-top: 4rem;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-header {
    padding: 4rem 5% 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.3rem;
    color: #555;
}

.contact-main {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.email-display {
    color: #0066cc;
    font-weight: 600;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-additional {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.contact-additional h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.thanks-container {
    padding: 5rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-service {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #333;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #0066cc;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-additional {
    margin-bottom: 2rem;
}

.thanks-additional h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.thanks-additional p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thanks-link {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: #fff;
    color: #0066cc;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #0066cc;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.thanks-link:hover {
    background: #0066cc;
    color: #fff;
}

.legal-page {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.75rem;
    color: #333;
}

.legal-content h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.5rem;
    color: #444;
}

.legal-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #444;
    line-height: 1.6;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #666;
}

.url-display {
    color: #0066cc;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #444;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .hero-content-offset {
        transform: none;
        padding-right: 0;
    }

    .hero-visual-block {
        transform: none;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .intro-diagonal {
        flex-direction: column;
    }

    .approach-offset {
        flex-direction: column;
        gap: 3rem;
    }

    .approach-left {
        transform: none;
    }

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

    .card-elevated,
    .card-offset-top,
    .card-wide,
    .card-narrow {
        flex: 1 1 100%;
        transform: none;
    }

    .impact-visual {
        flex-direction: column;
    }

    .impact-right-image {
        transform: none;
    }

    .form-container-offset {
        transform: none;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .story-section {
        flex-direction: column;
    }

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

    .contact-main {
        flex-direction: column;
    }

    .value-card,
    .approach-item,
    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

    .page-header-offset h1,
    .about-header h1,
    .contact-header h1 {
        font-size: 2.5rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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