/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation - Floating Asymmetric */
.nav-floating {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #555;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 150px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
    z-index: 2;
}

.hero-title-large {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -80px;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Intro Offset Section */
.intro-offset {
    display: flex;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.intro-text-narrow {
    flex: 1.5;
}

.intro-text-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.intro-stats-card {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    transform: rotate(-2deg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Asymmetric */
.services-asymmetric {
    padding: 120px 40px;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 60px;
    margin-left: 120px;
    color: #2c3e50;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 320px;
}

.card-medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 280px;
}

.card-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
}

.service-price {
    padding: 0 25px 25px;
    margin-top: auto;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    display: block;
}

.price-unit {
    font-size: 0.95rem;
    color: #999;
}

/* Benefits Diagonal */
.benefits-diagonal {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
}

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

.benefits-content-left h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-check {
    width: 40px;
    height: 40px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.benefit-text p {
    color: #666;
    line-height: 1.6;
}

.benefits-image-right {
    flex: 1;
    position: relative;
}

.benefits-image-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
}

/* Testimonials Stacked */
.testimonials-stacked {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-stacked h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-left: auto;
    max-width: 85%;
}

.testimonial-card:nth-child(even) {
    margin-left: 0;
    margin-right: auto;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

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

/* Order Form Section */
.order-form-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-container-offset {
    flex: 1.5;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
    padding: 18px 40px;
    background-color: #3498db;
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.form-trust-badges {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.trust-badge {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* How It Works - Asymmetric Steps */
.how-it-works {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: #2c3e50;
}

.steps-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.step-left {
    margin-right: auto;
    max-width: 70%;
}

.step-right {
    margin-left: auto;
    max-width: 70%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* Sticky CTA */
.cta-sticky-section {
    position: relative;
}

.cta-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 999;
    transition: all 0.3s ease;
}

.cta-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-button-small {
    padding: 12px 25px;
    background-color: #3498db;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

.cta-button-small:hover {
    background-color: #2980b9;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 40px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.disclaimer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #856404;
}

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

/* Footer Asymmetric */
.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-brand-col {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    max-width: 1400px;
    margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Page Hero */
.page-hero {
    padding: 180px 40px 80px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Page Styles */
.about-story {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 70px;
    align-items: center;
}

.story-content {
    flex: 1.3;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.values-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #3498db;
}

.value-card p {
    line-height: 1.7;
    color: #666;
}

.team-approach {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 70px;
    align-items: center;
}

.approach-text {
    flex: 1.5;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.stat-large {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-desc {
    display: block;
    font-size: 1.1rem;
    opacity: 0.95;
}

.commitment-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.commitment-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.commitment-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.commitment-item {
    display: flex;
    gap: 25px;
    background-color: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.commitment-icon {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.commitment-text h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.commitment-text p {
    color: #666;
    line-height: 1.7;
}

.cta-section-simple {
    padding: 100px 40px;
    text-align: center;
}

.cta-section-simple h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-section-simple p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.cta-button-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Services Page */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-reverse {
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price-tag {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e8f4f8;
    color: #3498db;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-note {
    background-color: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin-bottom: 20px;
    font-size: 1rem;
}

.cta-inline {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

.cta-inline:hover {
    background-color: #2980b9;
}

.pricing-notes {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.pricing-notes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.notes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.note-item {
    flex: 1;
    background-color: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.note-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #3498db;
}

.note-item p {
    line-height: 1.7;
    color: #666;
}

.faq-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    line-height: 1.7;
    color: #666;
}

/* Contact Page */
.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 80px;
}

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

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

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

.contact-note {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    margin-top: 5px;
}

.contact-form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-form-wrapper p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.contact-map-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.coverage-area p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.coverage-list {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.coverage-item {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.coverage-item h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #3498db;
}

.coverage-item p {
    color: #666;
}

.contact-faq {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-faq h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-faq > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.faq-box {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.faq-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-box p {
    line-height: 1.6;
    color: #666;
}

.contact-cta {
    padding: 80px 40px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 35px;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    display: none;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.step-thanks {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number-thanks {
    width: 45px;
    height: 45px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content-thanks h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content-thanks p {
    color: #666;
    line-height: 1.6;
}

.thanks-contact {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
}

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

.btn-primary-thanks {
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary-thanks:hover {
    background-color: #2980b9;
}

.btn-secondary-thanks {
    padding: 15px 35px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 30px;
    font-weight: 600;
}

.btn-secondary-thanks:hover {
    background-color: #3498db;
    color: #fff;
}

/* Legal Pages */
.legal-page {
    padding: 60px 40px 100px;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1rem;
    color: #999;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #34495e;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2980b9;
}

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

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        padding: 12px 30px;
    }

    .hero-title-large {
        font-size: 2.8rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 130px;
    }

    .hero-content-offset {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 40px;
    }

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

    .intro-stats-card {
        transform: rotate(0);
    }

    .services-grid-irregular {
        flex-direction: column;
    }

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

    .benefits-diagonal {
        flex-direction: column;
    }

    .benefits-image-right img {
        transform: rotate(0);
    }

    .order-form-section {
        flex-direction: column;
    }

    .about-story,
    .team-approach {
        flex-direction: column;
    }

    .service-detail-card,
    .service-reverse {
        flex-direction: column;
    }

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

    .contact-main {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 80px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title-large {
        font-size: 2.2rem;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 2.2rem;
    }

    .cta-sticky {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
        font-size: 0.9rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

    .steps-asymmetric {
        gap: 25px;
    }

    .step-left,
    .step-right {
        max-width: 100%;
        margin: 0;
    }

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

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

    .coverage-list {
        flex-direction: column;
        gap: 25px;
    }

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

    .faq-box {
        flex: 1 1 100%;
    }

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

    .btn-primary-thanks,
    .btn-secondary-thanks {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        padding: 10px 20px;
        border-radius: 30px;
    }

    .hero-title-large {
        font-size: 1.8rem;
    }

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

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

    .cta-sticky {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }
}
