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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

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

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-main {
    padding: 40px 60px;
    background-color: #ffffff;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-primary {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-primary a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #888888;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-minimal {
    padding: 120px 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    font-weight: 300;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.intro-statement {
    padding: 160px 60px;
    background-color: #fafafa;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.statement-large {
    font-size: 32px;
    line-height: 1.6;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-minimal {
    margin-bottom: 100px;
}

.section-header-minimal h2 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-card-minimal {
    flex: 1;
    min-width: 320px;
}

.service-image-container {
    width: 100%;
    height: 360px;
    background-color: #e8e8e8;
    margin-bottom: 32px;
    overflow: hidden;
}

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

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

.service-card-minimal p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 8px 0;
    border-top: 1px solid #e0e0e0;
}

.cta-centered {
    text-align: center;
    margin-top: 60px;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #2c2c2c;
}

.consultation-form-section {
    padding: 160px 60px;
    background-color: #f5f5f5;
}

.form-header-minimal {
    text-align: center;
    margin-bottom: 80px;
}

.form-header-minimal h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.form-header-minimal p {
    font-size: 20px;
    color: #4a4a4a;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a4a4a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    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: #1a1a1a;
}

.btn-submit-minimal {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit-minimal:hover {
    background-color: #2c2c2c;
}

.trust-indicators {
    padding: 120px 60px;
    background-color: #1a1a1a;
}

.indicators-grid {
    display: flex;
    justify-content: space-around;
    gap: 60px;
    flex-wrap: wrap;
}

.indicator-item {
    text-align: center;
}

.indicator-item h3 {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 12px;
}

.indicator-item p {
    font-size: 18px;
    color: #cccccc;
}

.image-statement-block {
    padding: 160px 60px;
    background-color: #ffffff;
}

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

.split-content {
    flex: 1;
    min-width: 400px;
}

.split-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.split-image {
    flex: 1;
    min-width: 400px;
    height: 500px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.footer-minimal {
    background-color: #fafafa;
    padding: 100px 60px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 32px;
    background-color: #f0f0f0;
    border-left: 3px solid #1a1a1a;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

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

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

    .container-header {
        flex-direction: column;
        gap: 24px;
    }

    .nav-primary {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .hero-minimal {
        padding: 60px 24px 0;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-statement,
    .services-preview,
    .consultation-form-section,
    .image-statement-block {
        padding: 80px 24px;
    }

    .statement-large {
        font-size: 24px;
    }

    .section-header-minimal h2 {
        font-size: 36px;
    }

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

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

    .split-content,
    .split-image {
        min-width: 100%;
    }

    .footer-minimal {
        padding: 60px 24px 40px;
    }

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