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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

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

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

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

.hero-content p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 32px;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #333333;
}

.intro-reversed {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background: #e9ecef;
    position: relative;
}

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

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

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

.intro-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 60px;
    background: #f8f9fa;
}

.services-header {
    max-width: 720px;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #495057;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-image {
    flex: 0 0 400px;
    background: #e9ecef;
    position: relative;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 24px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #333333;
}

.contact-form-section {
    padding: 100px 60px;
    background: #ffffff;
    display: flex;
    gap: 80px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    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: #1a1a1a;
}

.btn-submit {
    padding: 16px 32px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #333333;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.footer-column a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #333333;
    padding-top: 32px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #dee2e6;
    padding: 24px 32px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 32px;
}

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

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

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background: #1a1a1a;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background: #e9ecef;
    color: #495057;
}

.btn-cookie.reject:hover {
    background: #dee2e6;
}

.page-hero {
    padding: 100px 60px 60px;
    background: #f8f9fa;
}

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

.page-hero p {
    font-size: 20px;
    color: #495057;
    max-width: 720px;
}

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

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

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

.about-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.approach-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.approach-grid {
    display: flex;
    gap: 40px;
}

.approach-step {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e9ecef;
    margin-bottom: 20px;
}

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

.approach-step p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

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

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

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

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

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

.values-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 60px;
    background: #1a1a1a;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

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

.cta-section .cta-primary {
    background: #ffffff;
    color: #1a1a1a;
}

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

.services-detailed {
    padding: 60px 60px 100px;
    background: #ffffff;
}

.service-detail {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

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

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

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

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

.service-price-large {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    margin-top: 8px;
}

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

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

.contact-split {
    display: flex;
    padding: 60px 60px 100px;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

.thanks-content #selectedService {
    font-weight: 600;
    color: #1a1a1a;
}

.legal-page {
    padding: 60px 60px 100px;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-page li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 40px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-reversed,
    .about-split,
    .values-split-reversed,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

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

    .hero-image,
    .intro-image,
    .about-image,
    .values-image,
    .contact-image,
    .service-detail-image {
        min-height: 400px;
    }

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

    .service-image {
        flex: 0 0 300px;
    }

    .contact-form-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 20px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content,
    .intro-text,
    .about-text,
    .values-text {
        padding: 60px 32px;
    }

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

    .services-preview,
    .approach-section,
    .services-detailed,
    .contact-split {
        padding: 60px 32px;
    }

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

    .service-image {
        flex: 0 0 250px;
    }

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

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