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

.ad-disclosure {
    background-color: #f8f8f8;
    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;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

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

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

.hero-content-center h1 {
    font-size: 82px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

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

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

.hero-image-full img {
    width: 100%;
    height: 100%;
    display: block;
}

.content-narrow {
    max-width: 720px;
    margin: 120px auto;
    padding: 0 60px;
}

.content-narrow h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.content-narrow p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 28px;
    line-height: 1.8;
}

.image-statement {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
    margin: 100px 0;
}

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

.content-wide-spaced {
    max-width: 1200px;
    margin: 140px auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.insight-block h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.insight-block p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    max-width: 800px;
}

.service-selection-area {
    max-width: 1400px;
    margin: 160px auto;
    padding: 0 60px;
}

.service-selection-area h2 {
    font-size: 52px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 80px;
}

.service-cards-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.service-card {
    width: 380px;
    background-color: #fafafa;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.service-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 30px 30px 16px;
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 30px 24px;
}

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

.select-service-btn {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.service-card.selected {
    background-color: #f0f0f0;
    border: 2px solid #1a1a1a;
}

.contact-form-section {
    max-width: 720px;
    margin: 140px auto;
    padding: 0 60px;
}

.contact-form-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.form-intro {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field label {
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
    padding: 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background-color: #ffffff;
}

.form-field input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.form-submit-btn {
    padding: 18px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.form-submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.testimonial-minimal {
    max-width: 900px;
    margin: 140px auto;
    padding: 0 60px;
    text-align: center;
}

.testimonial-minimal blockquote {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 24px;
}

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

.disclaimer-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 40px 60px;
    background-color: #f8f8f8;
    border-left: 4px solid #1a1a1a;
}

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

.minimal-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
    margin-top: 160px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px 40px;
    display: none;
    z-index: 1000;
}

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

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

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

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

.header-subtitle {
    font-size: 19px;
    color: #666;
    font-weight: 300;
}

.about-image-section {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
    margin: 80px 0;
}

.about-image-section img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-principle {
    max-width: 800px;
}

.about-principle h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-principle p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.team-statement {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 60px;
}

.team-statement h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.team-statement p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 24px;
}

.services-detail-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 500px;
    height: 380px;
    flex-shrink: 0;
    background-color: #f5f5f5;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

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

.service-detail-content p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-size: 20px;
}

.cta-services {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 60px;
    text-align: center;
}

.cta-services h2 {
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

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

.cta-button-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.contact-page-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.contact-info-block > p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 50px;
}

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

.contact-detail-item h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.contact-email-display {
    font-weight: 500;
    color: #1a1a1a;
}

.contact-image-block {
    width: 500px;
    height: 450px;
    flex-shrink: 0;
    background-color: #f5f5f5;
}

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

.contact-note {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px 60px;
    background-color: #f8f8f8;
    border-left: 4px solid #1a1a1a;
}

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

.thanks-page-content {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-message {
    flex: 1;
}

.thanks-message h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

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

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

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

.selected-service-display {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
    margin-top: 12px;
}

.thanks-info {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 40px;
}

.back-home-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.back-home-btn:hover {
    background-color: #333;
}

.thanks-image {
    width: 500px;
    height: 400px;
    flex-shrink: 0;
    background-color: #f5f5f5;
}

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

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

.legal-page h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

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

.legal-page li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-minimal {
        padding: 0 30px;
        margin: 50px auto 0;
    }

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

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

    .content-narrow,
    .content-wide-spaced,
    .service-selection-area,
    .contact-form-section,
    .testimonial-minimal,
    .disclaimer-section,
    .page-header-minimal,
    .team-statement,
    .services-detail-section,
    .cta-services,
    .contact-page-content,
    .contact-note,
    .thanks-page-content,
    .legal-page {
        padding: 0 30px;
    }

    .page-header-minimal h1 {
        font-size: 42px;
    }

    .service-cards-premium {
        flex-direction: column;
        align-items: center;
    }

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

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image,
    .contact-image-block,
    .thanks-image {
        width: 100%;
        max-width: 500px;
    }

    .contact-page-content,
    .thanks-page-content {
        flex-direction: column;
    }

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

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