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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6ba3;
    --accent-color: #e74c3c;
    --dark-bg: #0f1419;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.nav-brand a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 3rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-right: 3rem;
    max-width: 600px;
    transform: translateX(-2rem);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-image-right {
    flex: 1;
    transform: translateY(3rem) translateX(2rem);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-right img {
    width: 100%;
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.trust-block-diagonal {
    padding: 3rem 5%;
    background: var(--dark-bg);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    transform: skewY(2deg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.5rem;
}

.problem-amplify {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
    position: relative;
}

.content-narrow-offset {
    flex: 1;
    max-width: 550px;
    transform: translateX(3rem);
}

.content-narrow-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-narrow-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.image-overlap-right {
    flex: 1;
    position: relative;
    transform: translateY(-2rem);
}

.image-overlap-right img {
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.services-asymmetric {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.services-header-offset {
    margin-bottom: 3rem;
    transform: translateX(-1.5rem);
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card.card-large {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    transform: translateY(-1rem);
}

.service-card.card-offset {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    transform: translateY(2rem) translateX(1rem);
}

.service-card.card-elevated {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    transform: translateY(-2rem);
}

.service-card.card-small {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    transform: translateX(-1.5rem);
}

.service-card.card-wide {
    flex: 1 1 calc(66.666% - 1rem);
    min-width: 320px;
    transform: translateY(1.5rem);
}

.service-card.card-accent {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-1rem) translateX(1rem);
}

.service-card.card-accent h3,
.service-card.card-accent p,
.service-card.card-accent .price {
    color: white;
}

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

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card.card-accent .service-icon {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.cta-service {
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.service-card.card-accent .cta-service {
    background: white;
    color: var(--primary-color);
}

.form-section-offset {
    padding: 5rem 5%;
    background: white;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateX(-2rem);
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.cta-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.form-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.testimonials-scattered {
    padding: 5rem 5%;
    background: white;
}

.testimonials-scattered h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-left {
    transform: translateY(-1.5rem) translateX(-1rem);
}

.testimonial-right {
    transform: translateY(2rem) translateX(1rem);
}

.testimonial-center {
    transform: translateY(-0.5rem);
}

.testimonial p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.insight-block {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.insight-content-overlap {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.insight-text {
    flex: 1;
    transform: translateX(-2rem);
}

.insight-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.insight-image {
    flex: 1;
    transform: translateY(-3rem) translateX(2rem);
}

.insight-image img {
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.process-asymmetric {
    padding: 5rem 5%;
    background: white;
}

.process-asymmetric h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    transform: translateX(2rem);
}

.process-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.process-step {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    position: relative;
}

.process-step.step-1 {
    transform: translateY(-1rem);
}

.process-step.step-2 {
    transform: translateY(2rem) translateX(1.5rem);
}

.process-step.step-3 {
    transform: translateY(-0.5rem) translateX(-1rem);
}

.process-step.step-4 {
    transform: translateY(1.5rem);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(26, 77, 122, 0.15);
    display: block;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.urgency-cta-diagonal {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.urgency-content {
    text-align: center;
    color: white;
    transform: skewY(2deg);
}

.urgency-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.values-offset {
    padding: 5rem 5%;
    background: white;
}

.values-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    transform: translateX(-2rem);
}

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

.value-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.value-item:nth-child(1) {
    transform: translateY(-1rem);
}

.value-item:nth-child(2) {
    transform: translateY(1.5rem) translateX(1rem);
}

.value-item:nth-child(3) {
    transform: translateY(-0.5rem);
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.final-cta-sticky-reveal {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.cta-box-overlap {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: translateY(-2rem) translateX(1.5rem);
}

.cta-box-overlap h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-box-overlap p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.footer-asymmetric {
    background: var(--dark-bg);
    color: #ccc;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1 1 200px;
}

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

.footer-column a {
    display: block;
    color: #ccc;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.98);
    color: white;
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.cookie-accept:hover {
    background: #c0392b;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background: white;
    color: var(--dark-bg);
}

.hero-about-offset {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

.story-content-left {
    flex: 1;
    transform: translateX(-1.5rem);
}

.story-content-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-content-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-image-right {
    flex: 1;
    transform: translateY(2rem) translateX(1.5rem);
}

.story-image-right img {
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.mission-diagonal {
    padding: 4rem 5%;
    background: var(--light-bg);
    transform: skewY(-2deg);
    margin: 3rem 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(2deg);
    text-align: center;
}

.mission-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section-scattered {
    padding: 5rem 5%;
    background: white;
}

.team-section-scattered h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

.team-member {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-member.member-large {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    transform: translateY(-1rem);
}

.team-member.member-offset {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    transform: translateY(2rem) translateX(1.5rem);
}

.team-member.member-small {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    transform: translateX(-1rem);
}

.team-member.member-elevated {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    transform: translateY(1.5rem);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.team-member .role {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.values-asymmetric {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.values-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    transform: translateX(2rem);
}

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

.value-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-block:nth-child(1) {
    transform: translateY(-1rem) translateX(-1rem);
}

.value-block:nth-child(2) {
    transform: translateY(1.5rem) translateX(1.5rem);
}

.value-block:nth-child(3) {
    transform: translateY(-0.5rem);
}

.value-block:nth-child(4) {
    transform: translateY(2rem) translateX(-1rem);
}

.value-block h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-block p {
    color: var(--text-light);
    line-height: 1.6;
}

.certifications-scattered {
    padding: 5rem 5%;
    background: white;
}

.certifications-scattered h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

.cert-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
}

.cert-item:nth-child(1) {
    transform: translateY(-1rem);
}

.cert-item:nth-child(2) {
    transform: translateY(1.5rem) translateX(1rem);
}

.cert-item:nth-child(3) {
    transform: translateY(-0.5rem) translateX(-1rem);
}

.cert-item:nth-child(4) {
    transform: translateY(1rem);
}

.cert-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.cert-item p {
    color: var(--text-light);
}

.cta-about-offset {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.cta-content-diagonal {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-1.5rem) translateX(2rem);
}

.cta-content-diagonal h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-content-diagonal p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-hero-diagonal {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detail-asymmetric {
    padding: 5rem 5%;
    background: white;
}

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

.service-detail-item.item-left .service-detail-content {
    order: 1;
    transform: translateX(-1.5rem);
}

.service-detail-item.item-left .service-detail-image {
    order: 2;
    transform: translateY(2rem) translateX(1.5rem);
}

.service-detail-item.item-right .service-detail-content {
    order: 2;
    transform: translateX(1.5rem);
}

.service-detail-item.item-right .service-detail-image {
    order: 1;
    transform: translateY(-2rem) translateX(-1.5rem);
}

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

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

.service-icon-large {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-light);
}

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

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-service-detail {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-service-detail:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.package-section-offset {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.package-section-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

.package-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.package-card:nth-child(1) {
    transform: translateY(-1rem);
}

.package-card:nth-child(2) {
    transform: translateY(1.5rem);
}

.package-card:nth-child(3) {
    transform: translateY(-0.5rem) translateX(1rem);
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1.5rem;
}

.cta-package {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-package:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.consultation-cta-diagonal {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: skewY(-2deg);
    margin: 3rem 0;
}

.consultation-content {
    text-align: center;
    color: white;
    transform: skewY(2deg);
}

.consultation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.consultation-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-hero-offset {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-info-asymmetric {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: white;
}

.contact-details-left {
    flex: 1;
    transform: translateX(-1.5rem);
}

.contact-details-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--accent-color);
}

.contact-item .note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    background: var(--light-bg);
    border-radius: 12px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    transform: translateY(2rem) translateX(1.5rem);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 2rem;
}

.map-overlay p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.response-time-diagonal {
    padding: 4rem 5%;
    background: var(--light-bg);
    transform: skewY(-2deg);
    margin: 3rem 0;
}

.response-content {
    transform: skewY(2deg);
}

.response-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.response-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.response-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-align: center;
}

.response-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.response-item p {
    color: var(--text-light);
}

.faq-section-offset {
    padding: 5rem 5%;
    background: white;
}

.faq-section-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    transform: translateX(-1.5rem);
}

.faq-list {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-item:nth-child(odd) {
    transform: translateX(-1rem);
}

.faq-item:nth-child(even) {
    transform: translateX(1.5rem);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.office-hours-cta {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.office-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-1rem) translateX(-1.5rem);
}

.office-cta-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.office-cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero-centered {
    padding: 5rem 5% 3rem;
    background: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.success-icon {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}

.step {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

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

.step h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thanks-contact-info {
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.thanks-contact-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thanks-contact-info p {
    color: var(--text-light);
}

.thanks-contact-info a {
    color: var(--accent-color);
    text-decoration: underline;
}

.testimonial-thanks-section {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.testimonial-thanks-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-simple {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-align: center;
}

.testimonial-simple p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-simple .author {
    font-weight: 600;
    color: var(--primary-color);
}

.legal-content {
    padding: 3rem 5%;
    background: white;
    min-height: 60vh;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-container li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

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

@media (max-width: 1024px) {
    .hero-offset,
    .problem-amplify,
    .story-section-asymmetric,
    .insight-content-overlap,
    .service-detail-item,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .hero-content-left,
    .content-narrow-offset,
    .story-content-left,
    .insight-text,
    .service-detail-content,
    .contact-details-left {
        transform: translateX(0);
        padding-right: 0;
        max-width: 100%;
    }

    .hero-image-right,
    .image-overlap-right,
    .story-image-right,
    .insight-image,
    .service-detail-image,
    .contact-map-placeholder {
        transform: translateY(0) translateX(0);
        margin-top: 2rem;
    }

    .service-detail-item.item-right .service-detail-content,
    .service-detail-item.item-right .service-detail-image {
        order: initial;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

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

    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-card,
    .process-step,
    .team-member,
    .value-block,
    .package-card,
    .cert-item {
        transform: translateY(0) translateX(0) !important;
        flex: 1 1 100%;
    }

    .services-header-offset,
    .process-asymmetric h2,
    .values-content h2,
    .values-header h2,
    .faq-section-offset h2 {
        transform: translateX(0);
    }

    .faq-item {
        transform: translateX(0) !important;
    }

    .urgency-cta-diagonal,
    .trust-block-diagonal,
    .mission-diagonal,
    .response-time-diagonal,
    .consultation-cta-diagonal {
        transform: skewY(0);
    }

    .urgency-content,
    .trust-stats,
    .mission-content,
    .response-content {
        transform: skewY(0);
    }

    .form-container-asymmetric,
    .cta-box-overlap,
    .cta-content-diagonal,
    .office-cta-content {
        transform: translateY(0) translateX(0);
    }
}

@media (max-width: 480px) {
    .hero-content-left h1 {
        font-size: 2rem;
    }

    .cta-primary,
    .cta-secondary,
    .cta-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

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

    .content-narrow-offset h2,
    .services-header-offset h2,
    .urgency-content h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

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

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