* {
    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: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
}

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

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

.main-nav a:hover {
    color: #3b82f6;
}

.ad-notice {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.3rem 0.7rem;
    background-color: #f3f4f6;
    border-radius: 4px;
    margin-left: 1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e3a5f;
}

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

.hero-image {
    flex: 1;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2563eb;
}

.link-secondary {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-secondary:hover {
    color: #2563eb;
}

.problem-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-right h2,
.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e3a5f;
}

.content-right p,
.content-left p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.services-preview {
    background-color: #f8fafc;
    padding: 5rem 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #6b7280;
}

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

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

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

.service-card.featured {
    border: 2px solid #3b82f6;
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: #1e3a5f;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 1.5rem 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 1rem 1.5rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.approach-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.approach-list {
    list-style: none;
    margin-top: 1.5rem;
}

.approach-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #4b5563;
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

.contact-form-section {
    background-color: #f8fafc;
    padding: 5rem 2rem;
}

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

.form-container h2 {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.main-footer {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

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

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

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.disclaimer {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #60a5fa;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #3b82f6;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #2563eb;
}

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
}

.page-hero {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-hero .hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

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

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

.value-card h3 {
    font-size: 1.4rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
}

.experience-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #1e3a5f;
    color: #ffffff;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-box p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-block {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 3rem 0;
}

.service-block.reverse .service-content-wrapper {
    flex-direction: row-reverse;
}

.service-content-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-info {
    flex: 1;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.service-info h2 {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 1.5rem 0;
}

.price-tag.highlighted {
    color: #10b981;
}

.featured-service {
    background-color: #f0f9ff;
    padding: 4rem 2rem;
    border-radius: 8px;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

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

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.step p {
    color: #6b7280;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #4b5563;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #3b82f6;
}

.note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.map-section {
    padding: 0;
    background-color: #e5e7eb;
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    height: 400px;
    background-color: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.2rem;
}

.contact-cta {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

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

.service-confirmation {
    background-color: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #1e3a5f;
}

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

.next-steps {
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

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

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

.step-num {
    width: 50px;
    height: 50px;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: #6b7280;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.legal-intro {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-container a {
    color: #3b82f6;
    text-decoration: none;
}

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

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

    .nav-toggle {
        display: block;
    }

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

    .section-wrapper,
    .section-wrapper.reverse {
        flex-direction: column;
    }

    .service-content-wrapper,
    .service-block.reverse .service-content-wrapper {
        flex-direction: column;
    }

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

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

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

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

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