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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #3498db;
}

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

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

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

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

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.split-content-left p,
.split-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2c3e50;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.services-grid {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a252f;
}

.section-header p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 240px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a252f;
}

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

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin: 0 1.5rem 1rem;
}

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

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a252f;
    text-align: center;
}

.form-wrapper > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #5a6c7d;
    text-align: center;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.cta-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

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

.disclaimer-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #34495e;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

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

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

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

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-header {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a252f;
}

.page-header p {
    font-size: 1.25rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

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

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    color: #5a6c7d;
}

.cta-about {
    padding: 4rem 2rem;
    background-color: #3498db;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.cta-content .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-content .cta-primary:hover {
    background-color: #ecf0f1;
}

.service-detail {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.service-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.service-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
}

.service-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.service-benefits li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2c3e50;
}

.service-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

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

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

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a252f;
}

.contact-block p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-map-section {
    background-color: #e9ecef;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #d1d8dd;
}

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

.contact-cta {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.selected-service-info {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
}

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

.thanks-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

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

.legal-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content em {
    color: #7f8c8d;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .thanks-section {
        flex-direction: column;
    }

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

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

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

    .hero-content {
        max-width: 100%;
    }

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

    .service-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-content,
    .split-content-left,
    .split-content-right,
    .thanks-content {
        padding: 2rem;
    }

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

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

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

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

    .grid-container {
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
    }
}