/* 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: #2c3e50;
    background-color: #ffffff;
    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;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

/* Header - Asymmetric Layout */
.header-asymmetric {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.brand-section {
    flex: 0 0 auto;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: #ecf0f1;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

.main-nav a:hover {
    color: #ffffff;
}

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

.ad-disclosure {
    background-color: rgba(52, 152, 219, 0.2);
    color: #ecf0f1;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

/* Asymmetric Layout - Main Container */
.asymmetric-layout {
    max-width: 100%;
    overflow: hidden;
}

/* Hero Section - Offset Layout */
.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 80px 40px;
    background: linear-gradient(to bottom right, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content-left {
    flex: 0 0 55%;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #495057;
    font-weight: 400;
}

.hero-image-right {
    flex: 0 0 45%;
    position: relative;
    transform: translateX(40px);
}

.hero-image-right img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.btn-large {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.cta-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-large {
    background-color: #27ae60;
    color: #ffffff;
    padding: 18px 42px;
    font-size: 18px;
}

.btn-large:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

/* Intro Section - Asymmetric */
.intro-asymmetric {
    padding: 100px 40px;
    background-color: #ffffff;
}

.intro-block {
    max-width: 780px;
    margin: 0 0 0 120px;
}

.intro-block h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
    font-weight: 700;
}

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

/* Problem Section - Offset Layout */
.problem-section-offset {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    background-color: #f8f9fa;
    gap: 60px;
}

.problem-left {
    flex: 0 0 40%;
    transform: translateX(-40px);
}

.problem-left img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.problem-right {
    flex: 1;
}

.problem-right h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 700;
}

.challenge-list {
    margin-bottom: 36px;
}

.challenge-list li {
    padding: 14px 0 14px 32px;
    font-size: 17px;
    position: relative;
    color: #495057;
    line-height: 1.6;
}

.challenge-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 20px;
}

/* Solution Diagonal */
.solution-diagonal {
    background: linear-gradient(125deg, #3498db 0%, #2c3e50 100%);
    padding: 80px 40px;
    position: relative;
    transform: skewY(-2deg);
    margin: 100px 0;
}

.diagonal-content {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.diagonal-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.diagonal-content p {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Services Cards - Asymmetric Grid */
.services-cards-asymmetric {
    padding: 100px 40px;
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 36px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-offset-1 {
    flex: 0 0 calc(50% - 20px);
    transform: translateY(-30px);
}

.card-offset-2 {
    flex: 0 0 calc(50% - 20px);
    transform: translateY(30px);
}

.card-offset-3 {
    flex: 0 0 calc(33.333% - 27px);
    transform: translateY(-20px);
}

.card-offset-4 {
    flex: 0 0 calc(33.333% - 27px);
}

.card-offset-5 {
    flex: 0 0 calc(33.333% - 27px);
    transform: translateY(20px);
}

.card-offset-6 {
    flex: 0 0 calc(100% - 40px);
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.service-icon {
    margin-bottom: 24px;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.card-offset-6 h3 {
    color: #ffffff;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
    flex: 1;
}

.card-offset-6 p {
    color: rgba(255, 255, 255, 0.95);
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin: 16px 0;
}

.card-offset-6 .service-price {
    color: #ffffff;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

.card-offset-6 .btn-select-service {
    background-color: #ffffff;
    color: #667eea;
}

.card-offset-6 .btn-select-service:hover {
    background-color: #f8f9fa;
}

/* Trust Section */
.trust-section {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

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

.trust-content-centered h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.trust-content-centered p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.trust-features {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.trust-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

/* Testimonials - Asymmetric */
.testimonials-asymmetric {
    padding: 100px 40px;
    background-color: #ffffff;
}

.testimonials-asymmetric h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto 48px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card:nth-child(2) {
    transform: translateY(20px);
    border-left-color: #27ae60;
}

.testimonial-card:nth-child(3) {
    transform: translateY(-20px);
    border-left-color: #e74c3c;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    font-style: normal;
}

.cta-inline {
    text-align: center;
    margin-top: 48px;
}

.cta-inline a {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-inline a:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 16px 0 16px 36px;
    font-size: 17px;
    position: relative;
    color: #495057;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 22px;
}

.benefits-image {
    flex: 0 0 45%;
}

.benefits-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #5a6c7d;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    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 {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 40px;
    background-color: #ecf0f1;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #7f8c8d;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 12px;
}

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

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.email-display {
    color: #bdc3c7;
    font-size: 14px;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta a {
    display: block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #229954;
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(39, 174, 96, 0.5);
}

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

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.story-image {
    flex: 0 0 45%;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.mission-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.mission-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mission-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #3498db;
    font-weight: 700;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.values-section {
    padding: 100px 40px;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.value-item {
    margin-bottom: 36px;
    padding-left: 28px;
    border-left: 4px solid #3498db;
}

.value-item:nth-child(odd) {
    border-left-color: #27ae60;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.approach-step {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.approach-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

.expertise-areas {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

.expertise-card:nth-child(even) {
    border-top-color: #27ae60;
}

.expertise-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.expertise-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-section-about {
    padding: 80px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* Services Page */
.services-intro {
    padding: 60px 40px;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 40%;
}

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

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 24px;
}

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

.service-includes li {
    padding: 10px 0 10px 28px;
    font-size: 15px;
    position: relative;
    color: #495057;
}

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

.services-cta-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.services-process {
    padding: 100px 40px;
    background-color: #ffffff;
}

.services-process h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 32px 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.process-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 13px;
    color: #95a5a6;
    font-style: italic;
    margin-top: 12px;
}

.contact-map-section {
    padding: 0 40px 80px;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.additional-info {
    max-width: 900px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.faq-item {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.contact-cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-detail {
    font-size: 17px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 12px;
}

.thanks-info {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 48px;
}

.thanks-next-steps {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.step-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.thanks-resources {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.resources-content {
    max-width: 1100px;
    margin: 0 auto;
}

.resources-content h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
    font-weight: 700;
}

.resource-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.resource-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
    font-weight: 700;
}

.resource-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0 20px 24px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
    padding-left: 8px;
}

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

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

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

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

.cookies-table th,
.cookies-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

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

.cookies-table td {
    color: #5a6c7d;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-left {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-right {
        flex: 1;
        transform: none;
        width: 100%;
    }

    .problem-section-offset {
        flex-direction: column;
    }

    .problem-left {
        flex: 1;
        transform: none;
        width: 100%;
    }

    .service-card {
        flex: 0 0 100% !important;
        transform: none !important;
    }

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

    .service-detail-card {
        flex-direction: column !important;
    }

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

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

    .story-image {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .intro-block {
        margin: 0;
    }

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

    .form-container-asymmetric {
        padding: 32px 24px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .trust-features,
    .mission-cards,
    .expertise-areas {
        flex-direction: column;
    }

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

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

    .hero-subtitle {
        font-size: 16px;
    }

    body {
        font-size: 15px;
    }
}