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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav a:hover {
    color: #2b6cb0;
}

.ad-notice {
    background-color: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
}

.mobile-menu a {
    color: #2d3748;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 500;
}

.ad-notice-mobile {
    background-color: #fef3c7;
    color: #92400e;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
    text-align: center;
}

.mobile-menu.active {
    display: flex;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f7fafc;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.btn-primary {
    display: inline-block;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2b6cb0;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2b6cb0;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2b6cb0;
    color: #ffffff;
}

.intro-section {
    padding: 80px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
}

.content-left p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-preview {
    padding: 80px 0;
    background-color: #f7fafc;
}

.section-title {
    font-size: 42px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 12px;
}

.service-content p {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2c5282;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 16px;
}

.form-container p {
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e0;
    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: #2b6cb0;
}

.btn-submit {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2c5282;
}

.form-info {
    flex: 1;
}

.form-info h3 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 20px;
}

.process-list {
    list-style: none;
    margin-bottom: 32px;
}

.process-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #4a5568;
}

.process-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
    font-size: 18px;
}

.disclaimer-box {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #2b6cb0;
}

.disclaimer-box p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2b6cb0;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 10px;
}

.disclaimer-footer {
    font-size: 12px;
    color: #a0aec0;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #2b6cb0;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2c5282;
}

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

.btn-cookie.secondary:hover {
    background-color: #2d3748;
}

.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 20px;
    color: #e2e8f0;
}

.content-section {
    padding: 80px 0;
}

.values-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    color: #2b6cb0;
    margin-bottom: 12px;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.story-section {
    padding: 80px 0;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.method-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.method-section h2 {
    font-size: 42px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 60px;
}

.method-steps {
    display: flex;
    gap: 30px;
}

.method-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2b6cb0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.method-step h3 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 12px;
}

.method-step p {
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

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

.services-detailed {
    padding: 60px 0;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 16px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 12px;
    margin-top: 24px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 24px;
}

.benefit-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 18px;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-centered {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 16px;
}

.form-section > .container > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 40px;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-main {
    flex: 1.5;
}

.contact-info-main h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 20px;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.contact-detail p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}

.contact-additional {
    flex: 1;
    background-color: #f7fafc;
    padding: 32px;
    border-radius: 8px;
}

.contact-additional h3 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 16px;
}

.contact-additional p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-cta {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #e2e8f0;
}

.faq-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 60px;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 12px;
}

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

.thanks-section {
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.selected-service-info h3 {
    font-size: 20px;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.selected-service-info p {
    font-size: 16px;
    color: #2d3748;
}

.next-steps h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #2b6cb0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 16px;
}

.legal-updated {
    color: #718096;
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

.legal-page p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-page ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2c5282;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f7fafc;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .method-steps {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

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

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

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

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