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

.header {
    padding: 2rem 4rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

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

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

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #999;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-minimal {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #f5f5f5;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.content-section {
    padding: 8rem 2rem;
}

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

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

.section-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.content-narrow p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
}

.services-preview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.service-card-large {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

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

.service-image-wrap {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-info {
    flex: 1;
    padding: 2rem 0;
}

.service-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.service-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c2c2c;
    padding: 0.75rem 2rem;
    border: 1px solid #2c2c2c;
}

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

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

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

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #5a5a5a;
    letter-spacing: 0.02em;
}

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

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

.btn-submit {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

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

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #777;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-left: 3px solid #ddd;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

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

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

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

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

.page-title {
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: 0.02em;
}

.image-section {
    padding: 4rem 0;
}

.image-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f0f0f0;
}

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

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: flex-start;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

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

.price-detail {
    font-size: 0.95rem;
    color: #999;
}

.contact-info-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-card {
    padding: 4rem;
    background-color: #fafafa;
}

.contact-card h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #999;
}

.contact-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c2c2c;
}

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

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

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

.thanks-message {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
}

.thanks-info {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #777;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thanks-actions a {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.thanks-actions .btn-primary {
    background-color: #2c2c2c;
    color: #ffffff;
}

.thanks-actions .btn-primary:hover {
    background-color: #1a1a1a;
}

.thanks-actions .btn-secondary {
    background-color: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
}

.thanks-actions .btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .content-section {
        padding: 4rem 1.5rem;
    }

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

    .service-card-large {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

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

    .service-detail {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}