/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-right a:hover {
    color: #1a1a1a;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6%;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #dee2e6;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #343a40;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #1a1a1a;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Split Sections */
.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #dee2e6;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6%;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

/* Services Section */
.services-intro {
    padding: 100px 6%;
    background-color: #ffffff;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro > p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #f8f9fa;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    padding: 24px 24px 12px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 24px 16px 24px;
    color: #495057;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    padding: 16px 24px 24px 24px;
    color: #1a1a1a;
}

/* Form Section */
.form-section {
    padding: 100px 6%;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 40px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #dee2e6;
    background-color: #ffffff;
    color: #1a1a1a;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: #343a40;
}

/* Page Hero */
.page-hero {
    padding: 120px 6%;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 20px;
    color: #6c757d;
}

/* Team Values */
.team-values {
    padding: 100px 6%;
    background-color: #ffffff;
}

.team-values h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

/* Stats Section */
.experience-section {
    padding: 100px 6%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.experience-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* CTA Sections */
.cta-about,
.cta-services,
.cta-contact {
    padding: 100px 6%;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
}

/* Services Full Page */
.services-full {
    padding: 60px 6%;
    background-color: #ffffff;
}

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

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

.service-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 24px;
}

.service-details ul {
    margin-bottom: 32px;
    padding-left: 20px;
}

.service-details ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.btn-service {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #343a40;
}

/* Pricing Note */
.pricing-note {
    padding: 80px 6%;
    background-color: #f8f9fa;
}

.pricing-note h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pricing-note p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
    max-width: 900px;
}

/* Contact Page */
.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 80px 6%;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

.email-display {
    color: #495057;
    font-weight: 500;
}

.contact-map {
    flex: 1;
    position: relative;
    background-color: #dee2e6;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.85);
    color: #ffffff;
    padding: 32px;
}

.map-overlay p {
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Reasons */
.contact-reasons {
    padding: 80px 6%;
    background-color: #ffffff;
}

.contact-reasons h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.reasons-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.reason-item {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    padding: 32px;
}

.reason-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.reason-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

/* Thanks Page */
.thanks-container {
    padding: 120px 6%;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
}

.thanks-info {
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-align: left;
    background-color: #ffffff;
    padding: 32px;
}

.thanks-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-info ol {
    padding-left: 24px;
}

.thanks-info ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.thanks-service-note {
    margin-bottom: 40px;
}

.thanks-service-note p {
    font-size: 17px;
    color: #495057;
}

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

.thanks-additional {
    padding: 80px 6%;
    background-color: #ffffff;
}

.thanks-additional h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.thanks-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.thanks-item {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    padding: 32px;
}

.thanks-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.thanks-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 16px;
}

.thanks-item a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.2s;
}

.thanks-item a:hover {
    opacity: 0.7;
}

/* Legal Pages */
.legal-page {
    padding: 80px 6%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.update-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 6% 32px 6%;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #adb5bd;
}

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #343a40;
}

.footer-bottom p {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 16px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #6c757d;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #dee2e6;
    padding: 24px 6%;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.btn-cookie-accept {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #343a40;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #dee2e6;
}

.btn-cookie-reject:hover {
    border-color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .contact-split {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content {
        padding: 60px 5%;
    }

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

    .hero-image,
    .split-image {
        min-height: 300px;
    }

    .nav-split {
        flex-direction: column;
        gap: 16px;
        padding: 16px 5%;
    }

    .nav-right {
        gap: 20px;
    }

    .services-grid,
    .values-grid,
    .stats-grid,
    .reasons-grid,
    .thanks-grid {
        flex-direction: column;
    }

    .service-row {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

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

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

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

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