* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-minimal {
    padding: 120px 80px 160px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 400;
}

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

.intro-section {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

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

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

.intro-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.intro-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.image-section {
    padding: 0;
    background-color: #e8eaed;
}

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

.services-overview {
    padding: 140px 0;
}

.services-overview h2 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -1.5px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 80px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8eaed;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin: 35px 35px 20px;
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 35px 30px;
    flex-grow: 1;
}

.price {
    font-size: 36px;
    font-weight: 300;
    margin: 0 35px 25px;
    color: #1a1a1a;
}

.select-service {
    margin: 0 35px 35px;
    padding: 16px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.selected-service-display span {
    font-weight: 600;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.form-group textarea {
    resize: vertical;
}

#inquiry-form button[type="submit"] {
    width: 100%;
    margin-top: 20px;
}

.trust-section {
    padding: 140px 80px;
}

.trust-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.trust-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #2a2a2a;
    border-left: 3px solid #666;
}

.disclaimer p {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.6;
}

.disclaimer strong {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 30px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
    flex: 1;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #f0f0f0;
    color: #333;
}

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

.page-hero {
    padding: 100px 80px 80px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-hero h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.content-section {
    padding: 100px 80px;
}

.content-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.content-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.values-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -1px;
}

.values-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.value-item {
    flex: 1;
    max-width: 350px;
}

.value-item h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

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

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

.service-detail-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.price-large {
    font-size: 48px;
    font-weight: 300;
    margin-top: 40px;
    color: #1a1a1a;
}

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

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

.cta-section {
    padding: 120px 80px;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 50px;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.contact-info {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 80px;
    justify-content: center;
}

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

.contact-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.thanks-section {
    padding: 160px 80px;
    text-align: center;
}

.thanks-section h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

#service-confirmation {
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
    font-weight: 500;
}

.legal-page {
    padding: 80px 80px 120px;
}

.legal-page h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 35px;
    margin-bottom: 20px;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .minimal-nav,
    .hero-minimal,
    .container-wide,
    .intro-section,
    .trust-section,
    .main-footer,
    .page-hero,
    .content-section,
    .thanks-section,
    .legal-page {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        flex: 0 1 calc(50% - 20px);
    }

    .values-grid {
        flex-direction: column;
        gap: 40px;
    }

    .value-item {
        max-width: 100%;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 25px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .intro-section h2,
    .trust-section h2,
    .content-section h2 {
        font-size: 32px;
    }

    .services-overview h2 {
        font-size: 38px;
    }

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

    .page-hero h1 {
        font-size: 42px;
    }

    .thanks-section h1 {
        font-size: 38px;
    }

    .legal-page h1 {
        font-size: 38px;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}