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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-minimal {
    padding: 36px 0;
    border-bottom: 1px solid #e8e8e8;
    background-color: #ffffff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
}

.nav-minimal {
    display: flex;
    gap: 36px;
}

.nav-minimal a {
    font-size: 15px;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

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

.hero-minimal {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #2a2a2a;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.display-large {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 32px;
}

.display-medium {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #f0f0f0;
    font-weight: 300;
}

.section-spacious {
    padding: 120px 0;
}

.section-offset {
    padding: 100px 0;
    background-color: #fafafa;
}

.heading-primary {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.heading-secondary {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}

.heading-tertiary {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 40px;
}

.text-large {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.text-medium {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.text-small {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 48px;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-layout-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #e8e8e8;
}

.split-content {
    flex: 1;
}

.section-img {
    width: 100%;
    height: auto;
}

.services-showcase {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #d0d0d0;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background-color: #1a1a1a;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2a2a2a;
}

.form-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.inquiry-form {
    margin-top: 48px;
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    flex: 1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    color: #1a1a1a;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #1a1a1a;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    background-color: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.8;
    color: #666666;
    font-style: italic;
}

.footer-minimal {
    padding: 80px 0 40px;
    background-color: #1a1a1a;
    color: #d0d0d0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #a0a0a0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #333333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 28px 24px;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-cookie {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    background-color: #ffffff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-cookie-alt {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-hero {
    padding: 100px 0 60px;
    background-color: #fafafa;
}

.about-values {
    display: flex;
    gap: 48px;
    margin-top: 60px;
}

.value-block {
    flex: 1;
    padding: 40px 32px;
    background-color: #ffffff;
}

.value-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
}

.cta-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

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

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

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

.service-detail-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}

.service-detail-price {
    font-size: 30px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 24px;
}

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

.detail-img {
    width: 100%;
    height: auto;
}

.service-inquiry {
    padding: 100px 0;
    background-color: #fafafa;
    text-align: center;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 0 0 360px;
}

.contact-context {
    flex: 1;
}

.contact-block {
    margin-bottom: 48px;
}

.contact-heading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.location-context {
    padding: 80px 0;
    background-color: #fafafa;
}

.thanks-section {
    padding: 120px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-details {
    margin: 60px 0;
    text-align: left;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 48px 0;
}

.thanks-note {
    margin-top: 60px;
    padding: 24px;
    background-color: #f5f5f5;
    border-radius: 2px;
}

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

.legal-updated {
    font-size: 14px;
    color: #808080;
    margin-bottom: 48px;
}

.legal-content {
    margin-top: 40px;
}

.legal-heading {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-subheading {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-text {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.legal-list {
    margin: 24px 0;
    padding-left: 28px;
}

.legal-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 12px;
    list-style: disc;
}

@media (max-width: 1024px) {
    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .about-values {
        flex-direction: column;
        gap: 32px;
    }

    .contact-layout {
        flex-direction: column;
        gap: 60px;
    }

    .contact-info {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .display-large {
        font-size: 38px;
    }

    .display-medium {
        font-size: 32px;
    }

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

    .nav-minimal {
        gap: 24px;
    }

    .services-grid {
        gap: 32px;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}