* {
    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: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #d4a5a5;
    color: #fff;
}

.btn-accept:hover {
    background: #c78283;
}

.btn-reject {
    background: #f0f0f0;
    color: #2c2c2c;
}

.btn-reject:hover {
    background: #e0e0e0;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

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

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

.hero-minimal {
    padding: 8rem 2rem 10rem;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.intro-section {
    padding: 8rem 2rem;
    background: #fff;
}

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

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

.large-text {
    font-size: 2rem;
    line-height: 1.6;
    color: #2c2c2c;
    font-weight: 300;
}

.services-preview {
    padding: 10rem 2rem;
    background: #f9f9f9;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 6rem;
    text-align: center;
    letter-spacing: -1px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 0;
    width: 100%;
    max-width: 380px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

.service-image {
    width: 100%;
    height: 280px;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding: 0 2rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a5a5;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.btn-select {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    padding: 1rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #000;
}

.why-section {
    padding: 10rem 2rem;
    background: #fff;
}

.why-section h2 {
    font-size: 3rem;
    margin-bottom: 5rem;
    text-align: center;
    font-weight: 600;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.reason-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reason-item p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.7;
}

.testimonials-section {
    padding: 10rem 2rem;
    background: #f5f5f5;
}

.testimonials-section h2 {
    font-size: 3rem;
    margin-bottom: 5rem;
    text-align: center;
    font-weight: 600;
}

.testimonial {
    margin-bottom: 4rem;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1.2rem;
    color: #999;
    text-align: right;
}

.form-section {
    padding: 10rem 2rem;
    background: #fff;
}

.form-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    font-size: 1.1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f9f9f9;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #000;
}

.footer-minimal {
    padding: 5rem 2rem 3rem;
    background: #2c2c2c;
    color: #fff;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.footer-copy {
    color: #999;
    font-size: 0.95rem;
}

.page-header {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
}

.content-section {
    padding: 6rem 2rem;
    background: #fff;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.content-section li {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.5rem;
}

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

.service-detail {
    padding: 3rem;
    background: #f9f9f9;
}

.service-detail h3 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-detail .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a5a5;
    margin-top: 2rem;
}

.contact-info {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.2rem;
    color: #666;
}

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

.thanks-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.thanks-content p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-content .selected-service {
    font-size: 1.8rem;
    color: #d4a5a5;
    font-weight: 600;
    margin: 2rem 0;
}

.thanks-content a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.thanks-content a:hover {
    background: #000;
}

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .large-text {
        font-size: 1.5rem;
    }

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

    .services-grid {
        gap: 2rem;
    }

    .why-section h2,
    .testimonials-section h2,
    .form-section h2,
    .page-title {
        font-size: 2.2rem;
    }

    .reason-item h3 {
        font-size: 1.5rem;
    }

    .reason-item p {
        font-size: 1.1rem;
    }

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

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

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

    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .thanks-content p {
        font-size: 1.2rem;
    }
}
