* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

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

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #fafafa;
}

.logo {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

main {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-minimal {
    padding: 120px 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

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

.hero-image-container {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    background-color: #e8e8e8;
    margin-top: 60px;
}

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

.intro-statement {
    padding: 100px 60px;
}

.statement-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 32px;
    line-height: 1.6;
    font-weight: 300;
    color: #1a1a1a;
    text-align: center;
}

.philosophy-preview {
    display: flex;
    gap: 80px;
    padding: 80px 60px;
    align-items: center;
}

.content-block-left {
    flex: 1;
}

.content-block-left h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.3;
}

.content-block-left p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
}

.image-block-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

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

.services-overview h2 {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
}

.service-grid-minimal {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.service-card-minimal {
    flex: 1;
    max-width: 380px;
    padding: 50px 40px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
}

.service-card-minimal h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.service-card-minimal p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    display: block;
    margin-bottom: 24px;
}

.cta-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-single {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

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

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

.testimonial-single cite {
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.approach-detail {
    padding: 100px 60px;
}

.text-column-centered {
    max-width: 800px;
    margin: 0 auto;
}

.text-column-centered h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
}

.text-column-centered p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
}

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

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

.form-container-minimal h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    padding: 16px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    font-family: inherit;
}

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

.submit-button {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

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

.final-statement {
    padding: 100px 60px;
}

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

.statement-centered p {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    color: #1a1a1a;
}

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

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

.footer-column {
    flex: 1;
}

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

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

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

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

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.disclaimer p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 30px;
    display: none;
    z-index: 1000;
}

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

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

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

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

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

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

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

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

.cookie-reject:hover {
    background-color: #f5f5f5;
}

.page-header-minimal {
    padding: 100px 60px 80px;
    text-align: center;
}

.page-header-minimal h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 20px;
}

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

.about-content {
    padding: 60px 60px 80px;
}

.full-width-text {
    max-width: 900px;
    margin: 0 auto;
}

.full-width-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
}

.full-width-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
}

.image-statement {
    padding: 80px 60px;
}

.image-statement img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.principle-blocks {
    display: flex;
    gap: 50px;
    padding: 80px 60px;
}

.principle {
    flex: 1;
}

.principle h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
}

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

.methodology {
    display: flex;
    gap: 80px;
    padding: 80px 60px;
    background-color: #ffffff;
    align-items: center;
}

.method-content {
    flex: 1;
}

.method-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
}

.method-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
}

.method-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.values-statement {
    padding: 100px 60px;
}

.centered-statement {
    max-width: 900px;
    margin: 0 auto;
}

.centered-statement h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
}

.centered-statement p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
}

.cta-about {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.cta-button-minimal {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

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

.service-detail {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
}

.service-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-pricing {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-large {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
}

.cta-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.service-image {
    flex: 1;
    background-color: #e8e8e8;
    height: 400px;
}

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

.contact-content {
    display: flex;
    gap: 60px;
    padding: 60px 60px 80px;
    justify-content: center;
}

.contact-info-block {
    flex: 1;
    max-width: 350px;
}

.contact-info-block h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

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

.note {
    font-size: 14px;
    color: #999;
    margin-top: 16px;
}

.contact-map-section {
    padding: 60px 60px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e8e8e8;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.approach-text {
    max-width: 900px;
    margin: 0 auto;
}

.approach-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
}

.contact-cta {
    padding: 100px 60px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 60px;
    background-color: #f5f5f5;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-content {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    align-items: center;
}

.thanks-message {
    flex: 1;
}

.thanks-message h1 {
    font-size: 54px;
    font-weight: 300;
    margin-bottom: 30px;
}

.thanks-lead {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f5f5f5;
}

.thanks-details p {
    font-size: 16px;
    color: #333;
}

.thanks-next-steps h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
}

.thanks-next-steps ol {
    padding-left: 24px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 24px;
    margin-top: 50px;
}

.cta-link {
    display: inline-block;
    padding: 18px 40px;
    color: #1a1a1a;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    font-size: 14px;
    transition: all 0.3s;
}

.cta-link:hover {
    background-color: #f5f5f5;
}

.thanks-image {
    flex: 1;
    background-color: #e8e8e8;
    height: 600px;
}

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

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

.legal-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 60px;
}

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 16px;
}

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

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

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

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

.legal-content a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .minimal-nav {
        padding: 30px 30px;
    }

    .nav-links {
        gap: 30px;
    }

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

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

    .philosophy-preview,
    .methodology,
    .service-detail,
    .thanks-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .principle-blocks {
        flex-direction: column;
        gap: 40px;
    }

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

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

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