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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.ad-disclosure {
    background: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2980b9;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.split-left,
.split-right {
    flex: 1;
    padding: 60px;
}

.split-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-left p {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
    max-width: 580px;
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-button {
    display: inline-block;
    background: #2980b9;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background: #21618c;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: #95a5a6;
}

.cta-button.secondary:hover {
    background: #7f8c8d;
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 18px;
}

.value-split,
.story-split,
.cta-split,
.about-split,
.philosophy-split,
.expertise-split,
.process-split,
.contact-split,
.approach-split,
.trust-split,
.next-steps-split {
    display: flex;
    align-items: center;
}

.value-split.reverse,
.philosophy-split.reverse,
.cta-split.reverse,
.approach-split.reverse {
    flex-direction: row-reverse;
}

.value-split .split-right h2,
.story-split .split-left h2,
.about-split .split-right h2,
.philosophy-split .split-left h2,
.expertise-split .split-left h2,
.process-split .split-right h2,
.contact-split .split-left h2,
.approach-split .split-right h2,
.trust-split .split-left h3,
.next-steps-split .split-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.value-split .split-right p,
.story-split .split-left p,
.about-split .split-right p,
.philosophy-split .split-left p,
.expertise-split .split-left p,
.process-split .split-right p,
.contact-split .split-left p,
.approach-split .split-right p,
.trust-split .split-left p,
.next-steps-split .split-left p {
    font-size: 17px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-intro {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

.content-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.content-center p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #21618c;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #555;
    font-size: 17px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.text-cta {
    display: inline-block;
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-bottom: 2px solid #2980b9;
    transition: color 0.3s;
}

.text-cta:hover {
    color: #21618c;
}

.cta-content {
    background: #ecf0f1;
    padding: 60px;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.form-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 17px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.submit-button {
    background: #27ae60;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-button:hover {
    background: #229954;
    transform: translateY(-2px);
}

.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.disclaimer-section {
    background: #ecf0f1;
    padding: 60px 40px;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
    z-index: 2000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

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

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.values-section {
    padding: 80px 40px;
}

.values-grid {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.tag {
    background: #ecf0f1;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

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

.step-number {
    background: #2980b9;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

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

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

.cta-about,
.cta-services,
.cta-contact {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

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

.cta-content-centered p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-detail {
    padding: 60px 40px;
}

.services-detail.alternate {
    background: #f8f9fa;
}

.service-detail-split {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
}

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

.service-detail-split .split-left,
.service-detail-split .split-right {
    flex: 1;
}

.service-detail-split h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-split p {
    font-size: 17px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #555;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
    font-size: 20px;
}

.pricing-box {
    background: #ecf0f1;
    padding: 25px;
    border-radius: 6px;
    margin-top: 30px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.contact-info {
    margin-top: 30px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.small-note {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 5px;
}

.map-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.map-placeholder {
    max-width: 1000px;
    margin: 30px auto 0;
    background: #ecf0f1;
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
    color: #7f8c8d;
    font-size: 18px;
}

.faq-section {
    padding: 80px 40px;
}

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

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.approach-list,
.process-list {
    list-style: none;
    margin-top: 25px;
}

.approach-list li,
.process-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.approach-list li::before,
.process-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
}

.thanks-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #27ae60;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.thanks-content p {
    font-size: 18px;
    opacity: 0.95;
}

.service-confirmation {
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 6px;
    margin-top: 25px;
    font-size: 16px;
}

.steps-list {
    margin-top: 30px;
}

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

.step-icon {
    background: #2980b9;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

.explore-more {
    background: #f8f9fa;
    padding: 80px 40px;
}

.explore-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.explore-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.explore-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.explore-card p {
    color: #666;
    line-height: 1.6;
}

.legal-page {
    padding: 60px 40px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin-bottom: 20px;
    margin-left: 25px;
    color: #666;
    line-height: 1.8;
}

.legal-container a {
    color: #2980b9;
    text-decoration: none;
    border-bottom: 1px solid #2980b9;
}

.legal-container a:hover {
    color: #21618c;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .story-split,
    .cta-split,
    .about-split,
    .philosophy-split,
    .expertise-split,
    .process-split,
    .contact-split,
    .approach-split,
    .trust-split,
    .next-steps-split,
    .service-detail-split {
        flex-direction: column;
    }

    .value-split.reverse,
    .philosophy-split.reverse,
    .cta-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 30px;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .split-left h1 {
        font-size: 36px;
    }

    .content-center h2,
    .cta-content h2,
    .cta-content-centered h2 {
        font-size: 32px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        font-size: 20px;
    }

    .form-container {
        padding: 30px 25px;
    }

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

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

    .stats {
        flex-direction: column;
    }
}