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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8ba8;
    --accent-color: #e8a547;
    --dark-color: #1a2f3a;
    --light-color: #f5f7fa;
    --text-color: #333333;
    --border-color: #d1d5db;
    --success-color: #4caf50;
    --bg-fallback: #e5e7eb;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.btn-accept:hover {
    background-color: #d69332;
}

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

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-color);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-fallback);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.intro-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

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

.problem-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.problem-image {
    flex: 1;
    background-color: var(--bg-fallback);
}

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

.problem-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.problem-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

.insight-section {
    background-color: var(--light-color);
    padding: 5rem 2rem;
}

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

.insight-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.insight-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-card p {
    color: #4b5563;
}

.insight-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.insight-card a:hover {
    text-decoration: underline;
}

.services-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--bg-fallback);
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--dark-color);
}

.service-card p {
    padding: 0 1.5rem 0.5rem;
    color: #4b5563;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 1rem 1.5rem 0.5rem;
}

.select-service {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: calc(100% - 3rem);
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #d69332;
}

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--light-color);
}

.trust-content {
    flex: 1;
    padding: 4rem;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.testimonial {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial p {
    color: #4b5563;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 0.5rem;
}

.trust-image {
    flex: 1;
    background-color: var(--bg-fallback);
}

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

.form-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-container > p {
    margin-bottom: 2rem;
    color: #6b7280;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef3c7;
    border-top: 2px solid #f59e0b;
    border-bottom: 2px solid #f59e0b;
}

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

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.disclaimer-content p {
    color: #78350f;
    font-size: 0.95rem;
}

.main-footer {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: #d1d5db;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section .reference {
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-section .reference a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
    text-align: center;
    color: #9ca3af;
}

.page-hero {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #d1d5db;
}

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

.about-image,
.service-detail-image {
    flex: 1;
    background-color: var(--bg-fallback);
}

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

.about-content,
.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2,
.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-content p,
.service-detail-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

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

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: #4b5563;
}

.process-section {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
}

.process-image {
    flex: 1;
    background-color: var(--bg-fallback);
}

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

.process-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.process-list {
    list-style: none;
    counter-reset: step-counter;
}

.process-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.process-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-list li strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.process-list li p {
    margin: 0;
    color: #4b5563;
}

.commitment-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.commitment-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    margin-bottom: 3rem;
}

.service-detail-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-detail-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4b5563;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.contact-section {
    padding: 3rem 2rem;
}

.contact-grid {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-item p {
    color: #4b5563;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-fallback);
}

.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta {
    padding: 4rem 2rem;
    background-color: var(--light-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 400px;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.service-info {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-info p {
    margin: 0.5rem 0;
    color: #4b5563;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.next-steps {
    padding: 4rem 2rem;
    background-color: var(--light-color);
}

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.step-item p {
    color: #4b5563;
}

.legal-page {
    padding: 3rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-updated {
    color: #6b7280;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.legal-container p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .split-reverse,
    .problem-section,
    .trust-section,
    .process-section,
    .service-detail {
        flex-direction: column;
    }

    .hero-content,
    .problem-content,
    .about-content,
    .process-content,
    .service-detail-content,
    .trust-content {
        padding: 2rem;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }

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

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

    .services-grid,
    .insight-grid,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

    .service-card,
    .insight-card,
    .value-item,
    .step-item {
        min-width: 100%;
    }
}