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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

.asymmetric-header {
    position: relative;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-mark {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #ddd;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    background: #ffffff;
}

.hero-offset-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem 4rem 6rem;
    position: relative;
    z-index: 2;
}

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

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background: #0052a3;
}

.hero-offset-right {
    flex: 1;
    position: relative;
    margin-top: 6rem;
    margin-right: 3rem;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-irregular {
    display: flex;
    padding: 8rem 4rem;
    background: #f8f8f8;
    position: relative;
    gap: 5rem;
    align-items: flex-start;
}

.intro-overlap-box {
    flex: 1.2;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: -4rem;
}

.intro-overlap-box h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-overlap-box p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.intro-stats-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.problem-section-layered {
    display: flex;
    padding: 6rem 4rem;
    background: #ffffff;
    gap: 4rem;
    align-items: center;
}

.problem-text-diagonal {
    flex: 1;
    padding-right: 3rem;
}

.problem-text-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.problem-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.problem-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    display: block;
}

.services-asymmetric {
    padding: 7rem 4rem;
    background: #f4f4f4;
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    margin-left: 3rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro {
    font-size: 1.15rem;
    color: #555;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
}

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

.service-card:hover {
    transform: translateY(-5px);
}

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

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

.service-card.card-small {
    flex: 1 1 calc(40% - 1rem);
}

.service-card img {
    width: 100%;
    height: 250px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 700;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    padding: 0 1.5rem;
    margin-top: auto;
}

.service-cta {
    margin: 1.5rem;
    padding: 0.9rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #0052a3;
}

.insight-diagonal {
    display: flex;
    padding: 6rem 4rem;
    background: #ffffff;
    gap: 4rem;
    align-items: center;
}

.insight-content-offset {
    flex: 1.2;
    padding-right: 2rem;
}

.insight-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.insight-phases {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

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

.phase-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0066cc;
}

.phase-name {
    font-size: 0.95rem;
    color: #666;
}

.insight-image-float {
    flex: 0.8;
    margin-top: 3rem;
}

.insight-image-float img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    display: block;
}

.testimonials-scattered {
    padding: 7rem 4rem;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials-header {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.testimonials-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

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

.testimonial-card.card-offset-2 {
    margin-top: 3rem;
}

.testimonial-card.card-offset-3 {
    margin-top: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #e0e0e0;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #aaa;
}

.form-section-irregular {
    display: flex;
    min-height: 600px;
    background: #f8f8f8;
}

.form-container-offset {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-submit {
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #0052a3;
}

.form-image-background {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.form-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.disclaimer-section {
    padding: 3rem 4rem;
    background: #fff8e1;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

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

.footer-columns-irregular {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ccc;
}

.footer-col p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
}

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

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

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

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

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #555;
}

.cookie-reject:hover {
    background: #333;
}

.page-hero-offset {
    padding: 6rem 4rem 3rem;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-hero-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.about-content-asymmetric {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    background: #f8f8f8;
    align-items: flex-start;
}

.about-text-primary {
    flex: 1.2;
}

.about-text-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text-primary p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image-overlap {
    flex: 0.8;
    margin-top: 3rem;
}

.about-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    display: block;
}

.philosophy-section-irregular {
    padding: 6rem 4rem;
    background: #ffffff;
}

.philosophy-box-offset {
    max-width: 1200px;
    margin: 0 auto 0 3rem;
}

.philosophy-box-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.philosophy-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #0066cc;
}

.philosophy-item p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.team-section-scattered {
    padding: 6rem 4rem;
    background: #f4f4f4;
}

.team-section-scattered h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.team-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    font-size: 1rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.values-diagonal {
    padding: 6rem 4rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.values-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.cta-about-section {
    padding: 5rem 4rem;
    background: #f8f8f8;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.services-detail-asymmetric {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    align-items: center;
}

.service-detail-card.card-offset-left {
    margin-left: 0;
}

.service-detail-card.card-offset-right {
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-detail-card.card-full-width {
    flex-direction: column;
    text-align: center;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content-centered {
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content h2,
.service-detail-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.service-detail-content ul,
.service-detail-content-centered ul {
    margin: 1.5rem 0 2rem 1.5rem;
}

.service-detail-content ul li,
.service-detail-content-centered ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0066cc;
    margin: 2rem 0 1.5rem;
}

.service-cta-large {
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-cta-large:hover {
    background: #0052a3;
}

.services-cta-section {
    padding: 5rem 4rem;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

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

.services-cta-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-content-asymmetric {
    display: flex;
    min-height: 500px;
    background: #f8f8f8;
}

.contact-info-block {
    flex: 1;
    padding: 5rem 4rem;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #0066cc;
}

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

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.contact-note p {
    font-size: 0.95rem;
    color: #555;
}

.contact-map-placeholder {
    flex: 1;
    background: #e0e0e0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.map-overlay p {
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-approach-section {
    padding: 6rem 4rem;
    background: #ffffff;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.approach-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: #f8f8f8;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #0066cc;
}

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

.thanks-service-info {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: #333;
}

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

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.thanks-next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-button-primary:hover {
    background: #0052a3;
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #333;
}

.legal-container p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

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

.gdpr-table thead {
    background: #f4f4f4;
}

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

.gdpr-table th {
    font-weight: 700;
    color: #1a1a1a;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-offset-left {
        padding: 3rem 2rem;
    }

    .hero-offset-right {
        margin: 2rem;
    }

    .intro-irregular,
    .problem-section-layered,
    .insight-diagonal,
    .about-content-asymmetric {
        flex-direction: column;
    }

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

    .service-detail-card {
        flex-direction: column !important;
    }

    .contact-content-asymmetric,
    .form-section-irregular {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .nav-floating {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

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

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