* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.header-minimal {
    padding: 2rem 0;
    position: relative;
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.35rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin-bottom: 4rem;
    z-index: 2;
}

.hero-title-large {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.01em;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1400px;
    background-color: #f5f5f5;
}

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

.spacing-large {
    padding: 8rem 2rem;
}

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

.heading-statement {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}

.visual-break {
    width: 100%;
    background-color: #f5f5f5;
}

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

.services-minimal {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

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

.section-title-minimal {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: -0.01em;
}

.service-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-card-premium {
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: #ffffff;
    padding: 4rem;
}

.service-card-premium.reverse {
    flex-direction: row-reverse;
}

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

.service-card-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.service-card-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

.btn-service-select {
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

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

.service-card-image {
    flex: 0 0 400px;
    background-color: #f5f5f5;
}

.service-card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.form-section-minimal {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.form-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
}

.btn-submit-minimal {
    padding: 1.25rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

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

.trust-minimal {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.trust-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.trust-author {
    text-align: center;
    font-size: 1rem;
    color: #666;
}

.final-visual {
    width: 100%;
    background-color: #f5f5f5;
}

.final-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.footer-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-section p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 1024px) {
    .hero-title-large {
        font-size: 3.5rem;
    }

    .heading-statement {
        font-size: 2.5rem;
    }

    .service-card-premium {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem;
    }

    .service-card-premium.reverse {
        flex-direction: column;
    }

    .service-card-image {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .spacing-large {
        padding: 4rem 2rem;
    }

    .services-minimal {
        padding: 4rem 2rem;
    }

    .section-title-minimal {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .service-cards-stacked {
        gap: 3rem;
    }

    .service-card-content h3 {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .form-section-minimal {
        padding: 4rem 2rem;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .trust-text {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.thanks-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.service-info {
    background-color: #fafafa;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-info strong {
    color: #1a1a1a;
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

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

.page-header {
    padding: 4rem 2rem 2rem;
    background-color: #fafafa;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: -0.01em;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.page-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.25rem;
}

.page-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.page-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #fafafa;
    padding: 3rem;
    margin: 2rem 0;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.contact-info strong {
    color: #1a1a1a;
    font-weight: 500;
}

.about-visual {
    width: 100%;
    margin: 3rem 0;
    background-color: #f5f5f5;
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border: 1px solid #eee;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-item .price {
    font-size: 1.75rem;
    font-weight: 300;
    color: #1a1a1a;
}