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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.nav-minimal {
    padding: 2rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d3748;
}

.ad-label {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.3rem 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #f7fafc;
}

.hero-minimal {
    padding: 8rem 5% 0;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.headline-large {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.subheading-spacious {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.cta-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary-large:hover {
    background-color: #1a202c;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.content-spacious {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.heading-minimal {
    font-size: 3rem;
    font-weight: 300;
    color: #1a202c;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.text-generous {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.image-section-wide {
    width: 100%;
    background-color: #e2e8f0;
}

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

.content-offset-left {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.text-block-offset {
    max-width: 600px;
    margin-left: 0;
}

.content-offset-right {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.content-offset-right .text-block-offset {
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}

.pricing-minimal {
    padding: 8rem 5%;
    background-color: #f7fafc;
}

.heading-centered {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    color: #1a202c;
    margin-bottom: 4rem;
}

.pricing-cards-spaced {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    width: 320px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #2d3748;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 300;
    color: #1a202c;
    margin-bottom: 1rem;
}

.price-large span {
    font-size: 1rem;
    color: #718096;
}

.description-generous {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.select-service-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-minimal {
    padding: 8rem 5%;
    background-color: #2d3748;
}

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

.quote-large {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.attribution {
    font-size: 1rem;
    color: #cbd5e0;
}

.form-section-centered {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.form-clean {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-clean input,
.form-clean select {
    padding: 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-clean input:focus,
.form-clean select:focus {
    outline: none;
    border-color: #2d3748;
}

.submit-btn-large {
    padding: 1.2rem 3rem;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn-large:hover {
    background-color: #1a202c;
}

.disclaimer-section {
    padding: 4rem 5%;
    background-color: #f7fafc;
    border-top: 1px solid #e2e8f0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.footer-minimal {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 5% 2rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2d3748;
    padding: 2rem 5%;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 1rem;
    color: #4a5568;
}

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

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #e2e8f0;
    color: #2d3748;
}

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

.page-hero-minimal {
    padding: 8rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.services-detail-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-block-large {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

.service-image-wrapper {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-text-block {
    flex: 1;
}

.price-display {
    font-size: 2rem;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d3748;
    font-weight: bold;
}

.additional-services {
    padding: 6rem 5%;
    background-color: #f7fafc;
}

.additional-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.additional-service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    width: 300px;
    border: 1px solid #e2e8f0;
}

.additional-service-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 1rem;
}

.additional-service-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content-centered {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    text-align: center;
}

.cta-section-minimal {
    padding: 8rem 5%;
    background-color: #f7fafc;
}

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

.thanks-section-centered {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.legal-page-content h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #1a202c;
    margin-bottom: 3rem;
}

.legal-page-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page-content p,
.legal-page-content ul {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page-content ul {
    padding-left: 2rem;
}

.legal-page-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .headline-large {
        font-size: 2.5rem;
    }

    .heading-minimal {
        font-size: 2rem;
    }

    .subheading-spacious {
        font-size: 1.2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-cards-spaced {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-minimal,
    .content-spacious,
    .form-section-centered,
    .page-hero-minimal {
        padding: 4rem 5%;
    }
}