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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-notice {
    background: #fffbea;
    color: #846a29;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f0e7c8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 36px;
    z-index: 99;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-cta-floating {
    margin-top: 20px;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.cta-primary:hover {
    background: #d67118;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

.hero-image-split {
    flex: 1;
    position: relative;
    background-color: #f5f5f5;
    transform: skewX(-3deg);
    transform-origin: top left;
    margin-left: -40px;
    overflow: hidden;
}

.hero-image-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(3deg) scale(1.2);
    transform-origin: center;
}

.intro-offset {
    padding: 140px 80px 100px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    flex: 1.3;
    padding-right: 40px;
}

.intro-narrow h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.intro-visual-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    top: 60px;
}

.intro-visual-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 16px;
    object-fit: cover;
}

.visual-caption {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.problem-amplify {
    background: var(--bg-light);
    padding: 100px 80px;
}

.problem-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.problem-item-large {
    flex: 1 1 55%;
    min-width: 300px;
}

.problem-item-large h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.problem-item-large p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.problem-item-small {
    flex: 1 1 35%;
    min-width: 250px;
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
}

.problem-item-medium {
    flex: 1 1 100%;
}

.problem-item-medium p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
}

.stat-box {
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
    display: block;
}

.insight-story {
    padding: 120px 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.story-container {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.story-block-left {
    flex: 1;
}

.story-block-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 28px;
    line-height: 1.25;
}

.story-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.story-block-right {
    flex: 1;
    background-color: #f1f3f5;
    padding: 20px;
    border-radius: 8px;
    transform: rotate(-2deg);
}

.story-block-right img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.story-reveal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 60px;
    border-radius: 12px;
    color: white;
}

.story-insight {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.story-reveal p:last-child {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.trust-elements {
    background: var(--bg-white);
    padding: 100px 80px;
}

.trust-grid-broken {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

.trust-card-offset {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    position: relative;
    top: -30px;
}

.trust-card-offset h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-card-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.trust-card-image {
    flex: 1 1 35%;
    min-width: 250px;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    top: 30px;
}

.trust-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-card-stat {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
}

.testimonials-inline {
    background: var(--bg-light);
    padding: 100px 80px;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card-tilt {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-card-tilt:nth-child(odd) {
    transform: rotate(-1deg);
}

.testimonial-card-tilt:nth-child(even) {
    transform: rotate(1deg);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.services-reveal {
    padding: 120px 80px 80px;
    background: var(--bg-white);
}

.services-header-offset {
    max-width: 800px;
    margin: 0 0 80px 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-header-offset p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card:nth-child(odd) {
    margin-top: 0;
}

.service-card:nth-child(even) {
    margin-top: 40px;
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-duration {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.select-service-btn {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.select-service-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

.select-service-btn:active {
    transform: translateY(0);
}

.select-service-btn.selected {
    background: var(--success-color);
}

.form-section {
    padding: 80px 80px 120px;
    background: var(--bg-light);
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto 0 200px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.form-header p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

#selected-service-display {
    font-weight: 600;
    color: var(--secondary-color);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.submit-btn:hover {
    background: #d67118;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.final-cta-offset {
    padding: 100px 80px;
    background: var(--bg-white);
}

.cta-content-irregular {
    max-width: 700px;
    margin: 0 0 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    color: white;
    text-align: center;
    transform: rotate(-1deg);
}

.cta-content-irregular h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content-irregular p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content-irregular .cta-secondary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-content-irregular .cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 80px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 1 1 400px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--success-color);
    color: white;
}

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

.cookie-btn.reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background: var(--border-color);
}

.page-hero-minimal {
    padding: 100px 80px 60px;
    background: var(--bg-light);
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-story,
.philosophy-section,
.team-approach,
.values-section {
    padding: 80px 80px;
}

.story-layout-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-text-main {
    flex: 1.2;
}

.story-text-main h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.story-text-main p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.story-visual-aside {
    flex: 1;
    background-color: #f1f3f5;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    top: 40px;
}

.story-visual-aside img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.philosophy-section {
    background: var(--bg-light);
}

.philosophy-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-card-large {
    flex: 1 1 60%;
    min-width: 300px;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.philosophy-card-large h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.philosophy-card-large p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.philosophy-card-small,
.philosophy-card-medium {
    background: white;
    padding: 32px;
    border-radius: 8px;
}

.philosophy-card-small {
    flex: 1 1 calc(40% - 20px);
    min-width: 250px;
}

.philosophy-card-medium {
    flex: 1 1 100%;
}

.philosophy-card-small h4,
.philosophy-card-medium h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.philosophy-card-small p,
.philosophy-card-medium p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.team-content-offset {
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-content-offset h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.team-content-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.approach-visual {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 8px;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.values-section {
    background: var(--bg-light);
}

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

.values-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.cta-about {
    padding: 80px 80px;
    background: var(--bg-white);
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.cta-content-centered h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 80px 100px;
}

.services-intro-offset {
    max-width: 800px;
    margin: 0 0 80px 100px;
}

.services-intro-offset p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-dark);
}

.services-list-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 50px;
}

.service-detail-card:nth-child(odd) {
    margin-left: 0;
    margin-right: 80px;
}

.service-detail-card:nth-child(even) {
    margin-left: 80px;
    margin-right: 0;
}

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 32px;
}

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

.service-includes h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

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

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

.service-meta p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 16px;
}

.services-faq {
    padding: 80px 80px;
    background: var(--bg-white);
}

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

.faq-container-offset h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-content {
    padding: 60px 80px 100px;
}

.contact-layout-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-offset h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-email {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 8px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.contact-cta {
    padding: 80px 80px;
    background: var(--bg-light);
}

.cta-box-offset {
    max-width: 700px;
    margin: 0 0 0 auto;
    padding: 50px;
    background: white;
    border-radius: 12px;
    text-align: center;
}

.cta-box-offset h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-box-offset p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 32px;
}

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

.selected-service-info {
    font-size: 17px;
    color: var(--text-dark);
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: 6px;
}

.thanks-next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.thanks-next-steps ol {
    padding-left: 24px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.legal-page {
    padding: 60px 80px 100px;
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.legal-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 40px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    margin-top: 28px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 28px;
    margin-bottom: 20px;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

.cookies-table td {
    font-size: 15px;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 20px 30px;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        padding: 80px 40px 60px;
        max-width: 100%;
    }

    .hero-text-block h1 {
        font-size: 44px;
    }

    .hero-image-split {
        transform: none;
        margin-left: 0;
        min-height: 400px;
    }

    .hero-image-split img {
        transform: none;
    }

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

    .intro-visual-card {
        top: 0;
    }

    .problem-amplify,
    .services-reveal,
    .form-section,
    .final-cta-offset,
    .footer {
        padding: 80px 40px;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .service-card:nth-child(even) {
        margin-top: 0;
    }

    .form-wrapper-offset {
        margin: 0 auto;
        padding: 40px;
    }

    .cta-content-irregular {
        margin: 0 auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .intro-narrow h2 {
        font-size: 32px;
    }

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

    .story-block-right {
        transform: none;
    }

    .trust-grid-broken {
        flex-direction: column;
    }

    .trust-card-offset,
    .trust-card-image {
        top: 0;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        padding: 24px 20px;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .story-layout-offset,
    .contact-layout-split {
        flex-direction: column;
        gap: 50px;
    }

    .story-visual-aside,
    .contact-visual {
        top: 0;
    }

    .service-detail-card:nth-child(odd),
    .service-detail-card:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }

    .services-intro-offset {
        margin-left: 0;
    }

    .faq-container-offset {
        margin: 0;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}