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

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

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

a {
    text-decoration: none;
    color: inherit;
}

.ad-notice {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-visual {
    flex: 1;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.services-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px;
    color: #666;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    padding: 20px 24px 10px;
}

.btn-select {
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.form-content {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

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

.form-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    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: #3498db;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-visual {
    flex: 1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

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

.benefits-visual {
    flex: 1;
    overflow: hidden;
}

.benefits-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-content {
    flex: 1;
    padding: 60px;
}

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

.benefit-item {
    margin-bottom: 32px;
}

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

.benefit-item p {
    font-size: 17px;
    color: #666;
}

.cta-fullwidth {
    padding: 100px 20px;
    text-align: center;
    background-color: #2c3e50;
    color: #fff;
}

.cta-fullwidth h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-fullwidth p {
    font-size: 20px;
    margin-bottom: 32px;
}

.main-footer {
    background-color: #1a252f;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-col p {
    color: #bbb;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #bbb;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.disclaimer {
    margin-top: 12px;
    font-size: 13px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 24px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #e74c3c;
    color: #fff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 22px;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.about-content {
    flex: 1;
    padding: 60px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.about-visual {
    flex: 1;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px;
}

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

.value-card p {
    font-size: 17px;
    color: #666;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

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

.approach-visual {
    flex: 1;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-content {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.experience-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #fff;
}

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

.experience-content-centered h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.experience-content-centered p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: #555;
}

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

.service-price-box {
    margin: 24px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.service-detail-visual {
    flex: 1;
    overflow: hidden;
}

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

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

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-services p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

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

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

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

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

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

.contact-visual {
    flex: 1;
    overflow: hidden;
}

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

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

.directions-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.directions-content {
    display: flex;
    gap: 40px;
}

.direction-option {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.direction-option h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.direction-option p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

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

.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 48px;
}

.selected-service-box {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.selected-service-box h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
}

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

.next-steps {
    margin-bottom: 48px;
    text-align: left;
}

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

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

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

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

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

.step-text p {
    font-size: 16px;
    color: #666;
}

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

.btn-primary {
    padding: 16px 32px;
    background-color: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 16px 32px;
    background-color: #95a5a6;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

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

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

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

.legal-page ul {
    margin: 16px 0 16px 30px;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .benefits-split,
    .about-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .form-content,
    .benefits-content,
    .about-content,
    .approach-content,
    .service-detail-content,
    .contact-info {
        padding: 40px;
    }

    .values-grid,
    .directions-content {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

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

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

    .section-header-centered h2 {
        font-size: 32px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .page-hero p {
        font-size: 18px;
    }

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

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

@media (max-width: 480px) {
    .hero-content,
    .intro-content,
    .form-content,
    .benefits-content,
    .about-content,
    .approach-content,
    .service-detail-content,
    .contact-info {
        padding: 30px 20px;
    }

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

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