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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #1a3a52;
    --accent-color: #4a90d9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

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

.split-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: var(--background-light);
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-image {
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.cta-button-light {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-button-light:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.trust-indicators {
    background-color: var(--primary-color);
    padding: 48px 0;
}

.indicator-grid {
    display: flex;
    justify-content: space-around;
    gap: 48px;
}

.indicator-item {
    text-align: center;
    color: white;
}

.indicator-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.indicator-label {
    font-size: 16px;
    opacity: 0.9;
}

.split-container {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

.split-content {
    flex: 1;
    padding: 0 48px;
}

.split-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--secondary-color);
}

.problem-section {
    background-color: var(--background-light);
}

.solution-section {
    background-color: var(--background-white);
}

.service-cards {
    padding: 80px 0;
    background-color: var(--background-white);
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.cards-grid {
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.service-card {
    flex: 1;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #cbd5e1;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 24px 16px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-color);
}

.testimonial-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.form-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.split-form {
    flex: 1;
    padding: 0 48px;
}

.form-benefits {
    margin-top: 24px;
}

.benefit-item {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 15px;
}

.contact-form {
    background-color: white;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    background-color: var(--background-light);
    padding: 60px 0;
}

.disclaimer-box {
    background-color: white;
    border-left: 4px solid var(--accent-color);
    padding: 32px;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    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: 32px;
}

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

.cookie-content a {
    color: white;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    margin-bottom: 80px;
}

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

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

.detail-content {
    flex: 1;
}

.detail-image {
    flex: 1;
    background-color: #e2e8f0;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.detail-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.detail-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.price-box {
    margin: 32px 0;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

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

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

.values-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.team-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

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

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

.approach-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.approach-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.contact-details {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.hours-note {
    margin-top: 8px;
    font-size: 14px;
    font-style: italic;
}

.contact-cta {
    margin-top: 48px;
    padding: 32px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.contact-cta p {
    margin-bottom: 16px;
    font-size: 16px;
}

.location-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

.location-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.locations-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.location-card {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.location-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.location-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.response-box {
    max-width: 900px;
    margin: 0 auto;
}

.response-box h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.response-box p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.response-list {
    list-style: none;
    margin-top: 24px;
}

.response-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.response-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.legal-content {
    padding: 80px 0;
    background-color: var(--background-white);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.updated-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--background-light);
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-details {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

#serviceConfirmation {
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin: 48px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 220px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

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

    .split-left {
        padding: 40px 24px;
    }

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

    .indicator-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .split-content,
    .split-visual {
        width: 100%;
    }

    .split-content {
        padding: 40px 24px;
    }

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

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

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

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

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

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

    .team-stats {
        flex-direction: column;
        gap: 40px;
    }

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

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