* {
    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.7;
    color: #2c2c2c;
    background: #fafafa;
}

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

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 30px;
    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;
    font-size: 15px;
    color: #4a4a4a;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #1a1a1a;
}

.btn-reject {
    background: #f0f0f0;
    color: #2c2c2c;
}

.btn-reject:hover {
    background: #e0e0e0;
}

.header-minimal {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #e8e8e8;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.brand {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #2c2c2c;
}

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

.nav-minimal {
    display: flex;
    gap: 35px;
}

.nav-minimal a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-minimal a:hover {
    color: #666666;
}

.hero-minimal {
    padding: 120px 0 80px;
    background: #ffffff;
}

.display-large {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 60px;
}

.hero-visual {
    margin-top: 80px;
    background: #f0f0f0;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-statement {
    padding: 140px 0;
    background: #fafafa;
}

.statement-text {
    font-size: 32px;
    line-height: 1.5;
    color: #2c2c2c;
    font-weight: 300;
    text-align: center;
}

.approach-section {
    padding: 100px 0;
    background: #ffffff;
}

.approach-content {
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.approach-image {
    margin-top: 50px;
    background: #f0f0f0;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-preview {
    padding: 120px 0;
    background: #fafafa;
}

.section-title-center {
    font-size: 52px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.services-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card-minimal {
    padding: 60px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
}

.service-card-minimal h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card-minimal p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.price-tag {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.btn-service {
    padding: 16px 40px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1a1a1a;
}

.cta-inline {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.cta-inline h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.cta-inline p {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.6;
}

.form-section {
    padding: 120px 0;
    background: #fafafa;
}

.form-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.booking-form {
    background: #ffffff;
    padding: 60px;
    border: 1px solid #e8e8e8;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background: #1a1a1a;
}

.science-section {
    padding: 100px 0;
    background: #ffffff;
}

.science-section h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.science-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.science-section a {
    color: #2c2c2c;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.science-section a:hover {
    color: #666666;
}

.disclaimer-section {
    padding: 80px 0;
    background: #fafafa;
}

.disclaimer-box {
    background: #ffffff;
    padding: 40px;
    border-left: 4px solid #2c2c2c;
}

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

.footer-minimal {
    background: #2c2c2c;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    color: #b0b0b0;
}

.footer-links h4,
.footer-references h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-references .ref-item {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-references a {
    color: #b0b0b0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    text-align: center;
}

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

@media (max-width: 768px) {
    .display-large {
        font-size: 42px;
    }

    .lead-text {
        font-size: 18px;
    }

    .statement-text {
        font-size: 22px;
    }

    .section-title,
    .section-title-center {
        font-size: 32px;
    }

    .service-card-minimal {
        padding: 40px 30px;
    }

    .service-card-minimal h3 {
        font-size: 24px;
    }

    .price-tag {
        font-size: 32px;
    }

    .booking-form {
        padding: 40px 30px;
    }

    .container-wide,
    .container-medium,
    .container-narrow {
        padding: 0 20px;
    }

    .header-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 15px;
    }
}