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

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.header-left {
    flex: 1;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    gap: 30px;
}

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

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

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

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

.alternating-section {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.section-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.section-text {
    flex: 1;
    padding: 60px 80px;
}

.section-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.section-text p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 20px;
}

.services-preview {
    padding: 80px 60px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

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

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 24px 16px 24px;
}

.service-card p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 24px 20px 24px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 20px 24px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.split-content-reverse {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 80px 0;
}

.split-content-reverse .section-text {
    order: 2;
}

.split-content-reverse .section-image {
    order: 1;
}

.form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 16px;
}

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

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

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

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

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 60px 80px;
    border-top: 1px solid #e8e8e8;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 15px;
    color: #6c757d;
    text-align: center;
    line-height: 1.7;
}

.footer-split {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 60px 40px 60px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

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

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 100px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: #bdc3c7;
}

.split-content-about {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.6;
}

.team-approach {
    padding: 80px 60px;
    background-color: #ffffff;
}

.team-approach h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.6;
}

.cta-about {
    background-color: #3498db;
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 32px;
}

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

.cta-about .cta-primary:hover {
    background-color: #f8f9fa;
}

.service-detail {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-detail.reverse .service-detail-content {
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 36px;
}

.service-features li {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.cta-services {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-services p {
    font-size: 19px;
    color: #bdc3c7;
    margin-bottom: 32px;
}

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

.contact-info {
    flex: 1;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

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

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #d6dce5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.map-placeholder {
    max-width: 500px;
}

.map-placeholder p {
    font-size: 17px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-cta {
    background-color: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 19px;
    color: #6c757d;
    margin-bottom: 32px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 19px;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-content .cta-primary {
    margin: 12px 8px;
}

.thanks-content .cta-secondary {
    margin: 12px 8px;
}

.legal-page {
    padding: 60px 80px 100px 80px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

    .hero-content {
        padding: 50px 40px;
    }

    .hero-image {
        min-height: 400px;
    }

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

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

    .split-content-reverse .section-text,
    .split-content-reverse .section-image {
        order: 0;
    }

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

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

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

    .footer-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .services-grid {
        gap: 24px;
    }

    .service-card {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .header-split {
        padding: 16px 20px;
    }

    .header-right {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-text {
        padding: 40px 30px;
    }

    .section-text h2 {
        font-size: 30px;
    }

    .services-preview {
        padding: 60px 30px;
    }

    .services-preview h2 {
        font-size: 34px;
    }

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

    .form-section {
        padding: 60px 30px;
    }

    .disclaimer-section {
        padding: 40px 30px;
    }

    .footer-split {
        padding: 40px 30px 30px 30px;
    }

    .page-hero {
        padding: 60px 30px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .values-section {
        padding: 60px 30px;
    }

    .values-section h2 {
        font-size: 34px;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .approach-steps {
        gap: 32px;
    }

    .step-item {
        flex: 1 1 100%;
    }

    .service-detail-content {
        padding: 40px 30px;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .contact-map {
        padding: 40px 30px;
    }

    .legal-page {
        padding: 40px 30px 60px 30px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}