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

:root {
    --primary-color: #2C5F7C;
    --secondary-color: #4A9BC7;
    --accent-color: #E8833A;
    --dark-color: #1A1A1A;
    --light-color: #F5F5F5;
    --white: #FFFFFF;
    --gray: #6B7280;
    --border-color: #E5E7EB;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-text-block {
    max-width: 650px;
    margin-left: 5%;
    z-index: 2;
}

.hero-title-large {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232,131,58,0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232,131,58,0.4);
}

.hero-image-overlap {
    margin-top: -8rem;
    margin-left: auto;
    margin-right: 5%;
    max-width: 600px;
    z-index: 1;
}

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

.intro-section-stacked {
    padding: 6rem 2rem;
    background: var(--white);
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.section-heading-offset {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    margin-left: -5%;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-text-secondary {
    font-size: 1.15rem;
    color: var(--gray);
    font-style: italic;
}

.services-asymmetric {
    padding: 7rem 2rem;
    background: var(--light-color);
}

.services-container-offset {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-creative {
    margin-bottom: 4rem;
    margin-left: 8%;
}

.services-title-large {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-card-offset {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card-offset.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.service-card-offset.card-4 {
    margin-top: 2rem;
}

.service-card-offset.card-5 {
    margin-top: 0;
}

.service-card-offset.card-6 {
    margin-top: 2.5rem;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card-offset p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.service-meta {
    font-size: 0.9rem;
    color: var(--gray);
}

.form-section-creative {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.form-container-overlap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-text-block {
    color: var(--white);
    max-width: 600px;
}

.form-text-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.form-text-block p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.form-wrapper-offset {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 600px;
    margin-left: auto;
    margin-top: -2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

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

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

.btn-submit-modern {
    padding: 1.25rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section-asymmetric {
    padding: 7rem 2rem;
    background: var(--white);
}

.trust-container-offset {
    max-width: 1300px;
    margin: 0 auto;
}

.trust-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.testimonial-card-offset {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 16px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    border-left: 4px solid var(--accent-color);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
}

.testimonial-card-offset.fade-in-visible {
    opacity: 1;
    transform: translateX(0);
}

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

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

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

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

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

.benefits-section-creative {
    padding: 7rem 2rem;
    background: var(--light-color);
}

.benefits-wrapper-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefits-text-creative {
    max-width: 700px;
}

.benefits-text-creative h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.benefits-list-modern {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list-modern li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.15rem;
    line-height: 1.7;
}

.benefits-list-modern li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.benefits-image-overlap {
    max-width: 600px;
    margin-left: auto;
    margin-top: -4rem;
}

.benefits-image-overlap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-section-sticky {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2C3E50 100%);
    text-align: center;
}

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

.cta-content-offset h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content-offset p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-btn-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    transform: scale(1.05);
}

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

.footer-container-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h3, .footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.sticky-cta.sticky-cta-visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(232,131,58,0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232,131,58,0.5);
}

.about-hero-offset {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.about-story-asymmetric {
    padding: 6rem 2rem;
    background: var(--white);
}

.story-container-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-text-block {
    max-width: 700px;
}

.story-text-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.story-image-overlap {
    max-width: 600px;
    margin-left: auto;
}

.story-image-overlap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.values-section-creative {
    padding: 6rem 2rem;
    background: var(--light-color);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card-offset {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.value-card-offset.fade-in-visible {
    opacity: 1;
    transform: scale(1);
}

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

.value-card-offset.v-2 {
    margin-top: 2rem;
}

.value-card-offset.v-3 {
    margin-top: 1rem;
}

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

.value-card-offset p {
    color: var(--gray);
    line-height: 1.7;
}

.team-section-asymmetric {
    padding: 6rem 2rem;
    background: var(--white);
}

.team-container-offset {
    max-width: 1000px;
    margin: 0 auto;
}

.team-container-offset h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.approach-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.approach-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    min-width: 80px;
}

.approach-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.approach-content p {
    color: var(--gray);
    line-height: 1.7;
}

.mission-section-creative {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mission-content-offset {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.mission-content-offset h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
}

.cta-section-about {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.cta-about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-btn-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    transform: translateY(-2px);
}

.services-hero-creative {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    text-align: center;
}

.services-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto;
}

.services-detail-asymmetric {
    padding: 6rem 2rem;
    background: var(--white);
}

.services-detail-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card-offset {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.service-detail-card-offset.s-2 {
    margin-left: 5%;
}

.service-detail-card-offset.s-3 {
    margin-left: 2%;
}

.service-detail-card-offset.s-4 {
    margin-left: 8%;
}

.service-detail-card-offset.s-5 {
    margin-left: 3%;
}

.service-detail-card-offset.s-6 {
    margin-left: 6%;
}

.service-detail-header {
    text-align: center;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

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

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

.service-type {
    font-size: 1rem;
    color: var(--gray);
}

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

.service-detail-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,131,58,0.3);
}

.comparison-section-creative {
    padding: 6rem 2rem;
    background: var(--light-color);
}

.comparison-container {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.comparison-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.comparison-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.comparison-item p {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.guarantee-section-asymmetric {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

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

.guarantee-content-offset h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.guarantee-content-offset p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark-color);
}

.contact-hero-asymmetric {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.contact-info-container-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

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

.contact-text p {
    color: var(--dark-color);
    line-height: 1.7;
}

.contact-text a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-image-offset {
    max-width: 600px;
    margin-left: auto;
}

.contact-image-offset img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-map-section {
    padding: 6rem 2rem;
    background: var(--light-color);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.map-description {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.map-placeholder {
    background: var(--white);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.map-placeholder p {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-section-asymmetric {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.faq-container-offset h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

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

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

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

.faq-item p {
    color: var(--dark-color);
    line-height: 1.7;
}

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

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

.contact-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-btn-contact {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn-contact:hover {
    transform: translateY(-2px);
}

.thanks-section {
    min-height: 80vh;
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    margin: 0 auto 2rem;
}

.thanks-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service-info {
    margin-bottom: 3rem;
}

.selected-service {
    font-size: 1.2rem;
    color: var(--gray);
}

.selected-service strong {
    color: var(--accent-color);
}

.thanks-next-steps {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

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

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

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

.btn-back-home, .btn-learn-more {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home {
    background: var(--accent-color);
    color: var(--white);
}

.btn-back-home:hover {
    transform: translateY(-2px);
}

.btn-learn-more {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-learn-more:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

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

.legal-container h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-update {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.legal-container ul li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--accent-color);
}

.legal-container a:hover {
    text-decoration: underline;
}

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

.cookie-table thead {
    background: var(--light-color);
}

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

.cookie-table th {
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .nav-floating {
        padding: 1rem 1.5rem;
    }

    .hero-image-overlap {
        margin-top: 2rem;
        margin-left: 0;
        margin-right: 0;
    }

    .benefits-image-overlap {
        margin-top: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        top: 1rem;
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .service-card-offset {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .testimonial-card-offset {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .value-card-offset {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .form-wrapper-offset {
        margin-left: 0;
        padding: 2rem;
    }

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

    .section-heading-offset {
        margin-left: 0;
    }

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

    .comparison-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .approach-item {
        flex-direction: column;
        gap: 1rem;
    }

    .approach-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .form-wrapper-offset {
        padding: 1.5rem;
    }

    .thanks-next-steps {
        padding: 2rem 1.5rem;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
}
