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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 4px;
    margin-right: 1rem;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 8%;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #555555;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background: #d4d8dc;
}

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

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

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

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    background: #c8d0d8;
}

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

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6%;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

.services-preview {
    padding: 6rem 5%;
    background: #ffffff;
}

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

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

.section-header-center p {
    font-size: 1.2rem;
    color: #666666;
}

.service-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #f8f9fa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.75rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555555;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    padding: 0 1.5rem 1.5rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: #d5dbdb;
}

.form-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.inquiry-form {
    background: #ffffff;
    padding: 2.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #dcdcdc;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
}

.inquiry-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 200;
    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: 2rem;
}

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

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

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
}

.page-hero {
    padding: 6rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-center p {
    font-size: 1.3rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

.content-centered {
    padding: 6rem 5%;
}

.centered-block {
    max-width: 900px;
    margin: 0 auto;
}

.centered-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.centered-block p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

.services-detail {
    padding: 4rem 5%;
}

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

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #d4d8dc;
}

.service-detail-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.service-detail-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-detail-right ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-right ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #555555;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.price-label {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.contact-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
}

.contact-info-block,
.contact-image-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #d4d8dc;
}

.thanks-section {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.thanks-details {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555555;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

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

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

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

.legal-page {
    padding: 4rem 5%;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

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

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.6;
}

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

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

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

.cookie-table th,
.cookie-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid #dcdcdc;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 1rem;
    color: #555555;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        min-height: 500px;
    }

    .split-section {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-image,
    .split-content {
        min-height: 400px;
    }

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

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

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

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

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-left h1,
    .hero-content-center h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .split-content h2,
    .section-header-center h2,
    .centered-block h2,
    .service-detail-right h2,
    .contact-info-block h2 {
        font-size: 2rem;
    }

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

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

    .btn-secondary {
        margin-left: 0;
    }
}