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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #dddddd;
    border-radius: 4px;
}

.hero-minimal {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #fafafa;
}

.hero-content-centered {
    text-align: center;
    max-width: 900px;
}

.display-large {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.display-medium {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #444444;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border: 2px solid #2c2c2c;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.content-spacious {
    padding: 8rem 5%;
}

.bg-light {
    background-color: #fafafa;
}

.narrow-column {
    max-width: 750px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.heading-light {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.text-large {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
}

.visual-statement {
    width: 100%;
    overflow: hidden;
}

.image-full {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.image-contained {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.services-minimal {
    padding: 8rem 5%;
    background-color: #ffffff;
}

.section-title-centered {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}

.service-block {
    max-width: 700px;
    margin: 0 auto 5rem auto;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-block:last-child {
    border-bottom: none;
}

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

.service-block p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 2rem 0;
    color: #2c2c2c;
}

.btn-service {
    padding: 0.9rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.services-detailed {
    padding: 6rem 5%;
}

.service-detail-block {
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: #fafafa;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 400;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 2rem 0 1rem 0;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
}

.form-section {
    padding: 6rem 5%;
    background-color: #fafafa;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 3rem;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #dddddd;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-minimal {
    margin: 3rem 0;
    padding: 2rem 0;
    border-left: 3px solid #2c2c2c;
    padding-left: 2rem;
}

.testimonial-minimal p {
    font-size: 1.3rem;
    font-style: italic;
    color: #444444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-minimal cite {
    font-size: 1rem;
    font-style: normal;
    color: #888888;
}

.disclaimer-section {
    padding: 4rem 5%;
    background-color: #f5f5f5;
}

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

.footer-minimal {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 4rem 5% 2rem 5%;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444444;
}

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

.page-header-minimal {
    padding: 6rem 5% 3rem 5%;
    background-color: #fafafa;
}

.legal-content {
    padding: 4rem 5%;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 2.5rem 0 1rem 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 2rem 0 1rem 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

.contact-block {
    margin-bottom: 4rem;
}

.thanks-content {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 6rem 5%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.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);
}

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

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

    .display-large {
        font-size: 2.5rem;
    }

    .display-medium {
        font-size: 2rem;
    }

    .heading-light {
        font-size: 1.8rem;
    }

    .section-title-centered {
        font-size: 2rem;
    }

    .content-spacious {
        padding: 4rem 5%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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