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

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-teal: #0d9488;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --success-green: #10b981;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--secondary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-teal);
}

.floating-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

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

.nav-links a {
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-teal);
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 8rem 1.5rem 3rem;
    position: relative;
}

.hero-offset-left {
    width: 100%;
    margin-bottom: 2rem;
}

.hero-text-block {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 3rem 2rem;
    color: var(--white);
    border-radius: 20px;
    transform: rotate(-2deg);
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.3);
}

.hero-text-block h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-offset-right {
    width: 100%;
    transform: rotate(2deg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

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

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

.cta-text {
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-text:hover {
    transform: translateX(5px);
}

.intro-overlap {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--light-gray);
    position: relative;
}

.intro-card-left {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    transform: translateX(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.intro-card-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.intro-card-left p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    font-size: 1.0625rem;
}

.intro-stats-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(10px);
}

.stat-box {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--secondary-blue) 100%);
    padding: 2rem;
    border-radius: 15px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    transform: rotate(-1deg);
}

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

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.value-stacked {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-wide {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(1deg);
}

.value-narrow {
    width: 100%;
    padding: 2rem;
    background: var(--white);
    border-left: 5px solid var(--accent-teal);
    transform: translateY(-30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-narrow h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.services-grid-offset {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.section-header-angled {
    margin-bottom: 3rem;
    transform: translateX(-5px);
}

.section-header-angled h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-header-angled p {
    font-size: 1.125rem;
    color: var(--medium-gray);
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-large {
    transform: rotate(-1deg);
}

.service-medium {
    transform: rotate(1deg);
}

.service-small {
    transform: translateX(10px);
}

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

.service-icon {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

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

.btn-select-service {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.trust-diagonal {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    transform: skewY(-2deg);
    margin: 3rem 0;
}

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

.trust-content-offset h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    text-align: center;
}

.testimonials-staggered {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-left {
    transform: translateX(-10px);
}

.testimonial-right {
    transform: translateX(10px);
}

.testimonial-center {
    transform: translateY(10px);
}

.testimonial-card p {
    font-size: 1.0625rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-teal);
    font-style: normal;
}

.process-overlap {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.process-header-angled {
    margin-bottom: 3rem;
    text-align: center;
}

.process-header-angled h2 {
    font-size: 2.25rem;
    color: var(--primary-blue);
}

.process-steps-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.step-offset-1 {
    transform: translateX(-10px);
}

.step-offset-2 {
    transform: translateX(10px);
}

.step-offset-3 {
    transform: translateX(-5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-teal);
    min-width: 60px;
}

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

.process-step p {
    color: var(--medium-gray);
}

.cta-split {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--primary-blue);
}

.cta-left-content {
    color: var(--white);
}

.cta-left-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-right-visual {
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(-2deg);
}

.form-section-offset {
    padding: 5rem 1.5rem;
    background: var(--light-gray);
}

.form-container-asymmetric {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    transform: rotate(1deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.selected-service-text {
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 1.125rem;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: var(--accent-teal);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.final-cta-diagonal {
    padding: 4rem 1.5rem;
    background: var(--light-gray);
    text-align: center;
    transform: skewY(2deg);
}

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

.final-cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.final-cta-content p {
    margin-bottom: 2rem;
    color: var(--medium-gray);
    font-size: 1.0625rem;
}

.footer-asymmetric {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 1.5rem 2rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

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

.sticky-cta-btn {
    background: var(--accent-teal);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 148, 136, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    color: var(--white);
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.9375rem;
}

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

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

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

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: var(--medium-gray);
    color: var(--white);
}

.btn-reject:hover {
    background: var(--dark-gray);
}

.page-hero-offset {
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.page-hero-content {
    max-width: 800px;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--medium-gray);
}

.page-hero-image {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-1deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.story-asymmetric {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text-wide {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.story-text-wide h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.story-text-wide p {
    margin-bottom: 1.25rem;
    color: var(--medium-gray);
    font-size: 1.0625rem;
}

.story-image-offset {
    border-radius: 15px;
    overflow: hidden;
    transform: translateX(15px);
}

.values-staggered {
    padding: 5rem 1.5rem;
    background: var(--light-gray);
}

.values-staggered h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    text-align: center;
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.value-position-1 {
    transform: translateX(-10px);
}

.value-position-2 {
    transform: translateX(10px);
}

.value-position-3 {
    transform: translateX(-5px);
}

.value-position-4 {
    transform: translateX(5px);
}

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

.value-card p {
    color: var(--medium-gray);
}

.team-overlap {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.team-intro {
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.team-intro p {
    font-size: 1.125rem;
    color: var(--medium-gray);
}

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

.team-member {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.team-member p {
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.team-member span {
    color: var(--medium-gray);
    font-size: 0.9375rem;
}

.approach-diagonal {
    padding: 5rem 1.5rem;
    background: var(--light-gray);
    transform: skewY(-1deg);
}

.approach-content {
    transform: skewY(1deg);
}

.approach-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    text-align: center;
}

.approach-list-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    align-items: flex-start;
}

.approach-marker {
    font-size: 2rem;
    color: var(--accent-teal);
    font-weight: 700;
}

.approach-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.approach-text p {
    color: var(--medium-gray);
}

.industries-offset {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.industries-offset h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    text-align: center;
}

.industries-intro {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
}

.industries-grid-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background: var(--light-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background: var(--accent-teal);
    color: var(--white);
    transform: translateY(-3px);
}

.commitment-split {
    padding: 5rem 1.5rem;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-visual {
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(1deg);
}

.commitment-text {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
}

.commitment-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.commitment-text p {
    margin-bottom: 1.25rem;
    color: var(--medium-gray);
    font-size: 1.0625rem;
}

.services-detailed-asymmetric {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-layout-1 {
    transform: rotate(-1deg);
}

.service-layout-2 {
    transform: rotate(1deg);
}

.service-detail-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
    font-size: 1.0625rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.service-checklist {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-checklist li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--dark-gray);
}

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

.service-best-for {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.packages-offset {
    padding: 5rem 1.5rem;
    background: var(--light-gray);
}

.packages-offset h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    text-align: center;
}

.packages-intro {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    font-size: 1.0625rem;
}

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

.package-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.package-featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-teal);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.package-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.package-includes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.package-savings {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.package-featured h3,
.package-featured .package-price {
    color: var(--white);
}

.faq-staggered {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.faq-staggered h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    text-align: center;
}

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

.faq-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.faq-item:nth-child(odd) {
    transform: translateX(-10px);
}

.faq-item:nth-child(even) {
    transform: translateX(10px);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.faq-item p {
    color: var(--medium-gray);
}

.services-cta-diagonal {
    padding: 4rem 1.5rem;
    background: var(--accent-teal);
    text-align: center;
    transform: skewY(-2deg);
}

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

.services-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.services-cta-content p {
    margin-bottom: 2rem;
    color: var(--white);
    font-size: 1.0625rem;
}

.contact-info-asymmetric {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details-offset {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: rotate(-1deg);
}

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

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.contact-method p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    font-style: italic;
}

.contact-visual-offset {
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(1deg);
}

.contact-approach {
    padding: 5rem 1.5rem;
    background: var(--light-gray);
}

.contact-approach h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    text-align: center;
}

.approach-timeline-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-teal);
    min-width: 70px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.timeline-content p {
    color: var(--medium-gray);
}

.contact-questions {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.contact-questions h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    text-align: center;
}

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

.question-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.question-card:nth-child(odd) {
    transform: translateX(-10px);
}

.question-card:nth-child(even) {
    transform: translateX(10px);
}

.question-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.question-card p {
    color: var(--medium-gray);
}

.visit-section-diagonal {
    padding: 5rem 1.5rem;
    background: var(--light-gray);
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.visit-content p {
    margin-bottom: 2rem;
    color: var(--medium-gray);
    font-size: 1.0625rem;
}

.visit-image-offset {
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-1deg);
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.thanks-icon {
    margin: 0 auto 2rem;
}

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

.thanks-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background: var(--light-gray);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--accent-teal);
}

.thanks-next-steps {
    padding: 4rem 1.5rem;
    background: var(--white);
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    text-align: center;
}

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

.next-step-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.next-step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.next-step-card p {
    color: var(--medium-gray);
}

.thanks-resources {
    padding: 4rem 1.5rem;
    background: var(--light-gray);
}

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

.resources-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.resources-content p {
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-link {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.resource-link h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.resource-link p {
    color: var(--medium-gray);
    margin: 0;
}

.thanks-contact-alt {
    padding: 3rem 1.5rem;
    background: var(--white);
    text-align: center;
}

.thanks-contact-alt h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.thanks-contact-alt p {
    color: var(--medium-gray);
}

.legal-page {
    padding: 8rem 1.5rem 4rem;
    background: var(--white);
}

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

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

.legal-updated {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--primary-blue);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-blue);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

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

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

.cookie-table td {
    color: var(--medium-gray);
}

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

    .nav-toggle {
        display: none;
    }

    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding: 10rem 3rem 5rem;
    }

    .hero-offset-left {
        flex: 1;
        margin-bottom: 0;
    }

    .hero-offset-right {
        flex: 1;
    }

    .hero-text-block h1 {
        font-size: 3.5rem;
    }

    .intro-overlap {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

    .intro-card-left {
        flex: 2;
    }

    .intro-stats-right {
        flex: 1;
    }

    .value-stacked {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding: 6rem 3rem;
    }

    .value-wide {
        flex: 1;
    }

    .value-narrow {
        flex: 1;
    }

    .services-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

    .testimonials-staggered {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .process-steps-asymmetric {
        flex-direction: row;
    }

    .cta-split {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding: 6rem 3rem;
    }

    .cta-left-content {
        flex: 1;
    }

    .cta-right-visual {
        flex: 1;
    }

    .footer-main {
        flex-direction: row;
    }

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

    .footer-col {
        flex: 1;
    }

    .page-hero-content h1 {
        font-size: 3.5rem;
    }

    .story-asymmetric {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

    .story-text-wide {
        flex: 2;
    }

    .story-image-offset {
        flex: 1;
    }

    .values-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .team-grid-offset {
        flex-direction: row;
    }

    .service-detail {
        flex-direction: row;
        gap: 3rem;
        padding: 3rem;
    }

    .service-layout-2 .service-detail-image {
        order: 2;
    }

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

    .packages-grid-asymmetric {
        flex-direction: row;
    }

    .package-card {
        flex: 1;
    }

    .faq-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-info-asymmetric {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

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

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

    .questions-grid-offset {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .next-steps-grid {
        flex-direction: row;
    }

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

    .commitment-split {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

    .commitment-visual {
        flex: 1;
    }

    .commitment-text {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .services-asymmetric {
        gap: 2.5rem;
    }

    .form-container-asymmetric {
        padding: 4rem 3rem;
    }
}
