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

.ad-disclosure {
    background-color: #f8f8f8;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

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

.hero-content-center {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title-large {
    font-size: 68px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.hero-subtitle-spacious {
    font-size: 22px;
    color: #666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image-container {
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.intro-spacious {
    padding: 140px 60px;
    background-color: #fafafa;
}

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

.intro-text-large {
    font-size: 24px;
    line-height: 1.7;
    color: #333;
    font-weight: 300;
    margin-bottom: 30px;
}

.visual-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 60px;
}

.philosophy-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-image {
    flex: 0 0 400px;
    height: 600px;
    background-color: #f0f0f0;
}

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

.section-heading-minimal {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.body-text-spacious {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.services-preview {
    background-color: #fafafa;
    padding: 140px 60px;
}

.services-intro-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.body-text-center {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

.services-stacked {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-card-minimal {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.service-content-spacious {
    padding: 0 20px;
}

.service-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-price {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.cta-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 400;
}

.cta-minimal:hover {
    background-color: #333;
}

.form-section-spacious {
    padding: 140px 60px;
    background-color: #f5f5f5;
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-minimal {
    margin-top: 60px;
    text-align: left;
}

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

.form-group-spacious label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-spacious input,
.form-group-spacious textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-family: inherit;
}

.form-group-spacious input:focus,
.form-group-spacious textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group-spacious input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.cta-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #333;
}

.testimonial-minimal {
    padding: 140px 60px;
    background-color: #1a1a1a;
    color: #fff;
}

.testimonial-content-narrow {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 15px;
    color: #999;
}

.closing-spacious {
    padding: 140px 60px;
    background-color: #ffffff;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px;
    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: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.page-header-minimal {
    text-align: center;
    padding: 100px 60px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.page-title-large {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
}

.about-content-spacious {
    padding: 60px 60px 140px;
}

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

.about-narrow img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 80px;
    background-color: #f0f0f0;
}

.team-values-spacious {
    background-color: #fafafa;
    padding: 140px 60px;
}

.values-centered {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.values-grid-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 80px;
    justify-content: center;
}

.value-item {
    flex: 0 1 calc(50% - 30px);
    text-align: left;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.services-detailed {
    padding: 60px 60px 140px;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 120px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 0 0 500px;
    height: 600px;
    background-color: #f0f0f0;
}

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

.service-detail-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    margin: 30px 0;
}

.service-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-content-spacious {
    padding: 60px 60px 140px;
}

.contact-info-centered {
    max-width: 800px;
    margin: 0 auto;
}

.contact-block {
    margin-bottom: 80px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.note-text {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.contact-approach,
.contact-expectations,
.contact-cta-section {
    margin-bottom: 80px;
}

.inline-link {
    color: #1a1a1a;
    text-decoration: underline;
}

.inline-link:hover {
    opacity: 0.6;
}

.thanks-content-spacious {
    padding: 100px 60px 140px;
}

.thanks-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #fafafa;
    padding: 30px;
    margin: 40px 0;
}

.thanks-service {
    font-size: 17px;
    color: #333;
}

.thanks-next-steps {
    text-align: left;
    margin: 60px 0;
}

.thanks-steps-list {
    list-style: none;
    margin-top: 30px;
}

.thanks-steps-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.thanks-steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.cta-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 16px 40px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.legal-page {
    padding: 60px 60px 140px;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.legal-date {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;
    }

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

    .hero-minimal {
        padding: 0 30px;
        margin-top: 40px;
    }

    .hero-title-large {
        font-size: 38px;
    }

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

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

    .intro-spacious,
    .services-preview,
    .form-section-spacious,
    .testimonial-minimal,
    .closing-spacious {
        padding: 80px 30px;
    }

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

    .philosophy-image {
        flex: 1;
        width: 100%;
        height: 400px;
    }

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

    .service-detail-image {
        flex: 1;
        width: 100%;
        height: 400px;
    }

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

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

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

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

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

    .cta-minimal,
    .cta-secondary {
        width: 100%;
    }

    .values-grid-minimal {
        flex-direction: column;
    }

    .value-item {
        flex: 1;
    }
}