* {
    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;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 38px;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    background-color: #d4dce4;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 36px;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 36px;
    background-color: transparent;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    border: 2px solid #2563eb;
    cursor: pointer;
    font-size: 16px;
}

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

.benefits-alternating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.benefit-row {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

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

.benefit-text {
    flex: 1;
}

.benefit-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.benefit-visual {
    flex: 1;
    background-color: #d4dce4;
}

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

.services-grid {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 24px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 24px 16px;
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.service-card button {
    margin: 0 24px 24px;
}

.select-service {
    padding: 12px 24px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

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

.form-section {
    padding: 100px 40px;
}

.split-form {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.form-visual {
    flex: 1;
    background-color: #d4dce4;
}

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

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container p {
    font-size: 17px;
    color: #555;
    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;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d1d5db;
    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: #2563eb;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 60px 40px;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 70px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #b3b3b3;
}

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

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

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

.footer-column ul li a:hover {
    color: #fff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 28px 40px;
    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: 30px;
}

.cookie-content p {
    font-size: 15px;
    color: #333;
    flex: 1;
}

.cookie-content a {
    color: #2563eb;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

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

.cookie-accept:hover {
    background-color: #1d4ed8;
}

.cookie-reject {
    background-color: #e5e7eb;
    color: #333;
}

.cookie-reject:hover {
    background-color: #d1d5db;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 100px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero p {
    font-size: 19px;
    color: #555;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.service-detail-card {
    margin-bottom: 100px;
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 24px;
    margin-bottom: 24px;
}

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

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

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #d4dce4;
}

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

.expertise-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.expertise-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.expertise-item {
    flex: 1;
    min-width: 280px;
}

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.expertise-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.values-alternating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.value-row {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

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

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-image {
    flex: 1;
    background-color: #d4dce4;
}

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

.process-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    min-width: 80px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.cta-section {
    padding: 100px 40px;
}

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

.centered-cta h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-map-placeholder {
    flex: 1;
    background-color: #d4dce4;
    position: relative;
    min-height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.contact-approach {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.contact-approach h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.approach-item {
    flex: 1;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.thanks-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
}

.thanks-container {
    flex: 1.2;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-container > p {
    font-size: 20px;
    color: #2563eb;
    margin-bottom: 32px;
    font-weight: 600;
}

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

.thanks-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-confirmation {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
    font-size: 16px;
    color: #1a1a1a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.thanks-image {
    flex: 1;
    background-color: #d4dce4;
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .benefit-row,
    .split-form,
    .split-layout,
    .about-split,
    .value-row,
    .contact-split,
    .thanks-content {
        flex-direction: column;
    }

    .benefit-row.reverse,
    .split-layout.reverse,
    .value-row.reverse {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

    .footer-content,
    .approach-grid,
    .expertise-grid {
        flex-direction: column;
    }

    .nav-container {
        padding: 0 20px;
    }

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