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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

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

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.header-minimal {
    padding: 60px 0;
    background: #ffffff;
}

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

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

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

.nav-minimal a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-minimal a:hover {
    color: #6b4ce6;
}

.ad-notice {
    font-size: 12px;
    color: #666666;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-minimal {
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.hero-text {
    font-size: 20px;
    line-height: 1.7;
    color: #6a6a6a;
    margin-bottom: 60px;
}

.hero-image-container {
    margin-top: 80px;
    margin-bottom: 60px;
}

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

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

.section-heading {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.section-heading-center {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.5px;
}

.text-large {
    font-size: 22px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.intro-text-center {
    font-size: 20px;
    line-height: 1.7;
    color: #6a6a6a;
    text-align: center;
    margin-bottom: 80px;
}

.section-contrast {
    padding: 120px 0;
    background: #fafafa;
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 32px;
    font-weight: 600;
}

.split-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

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

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

.testimonial-section {
    padding: 140px 0;
    background: #6b4ce6;
}

.testimonial-large {
    font-size: 32px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    border: none;
}

.testimonial-large cite {
    display: block;
    margin-top: 40px;
    font-size: 18px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

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

.service-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #ffffff;
}

.service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #f0f0f0;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.price-tag {
    font-size: 24px;
    font-weight: 600;
    color: #6b4ce6;
    margin-top: 16px;
}

.btn-select {
    padding: 16px 32px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #6b4ce6;
}

.form-minimal {
    margin-top: 60px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #1a1a1a;
}

.btn-submit {
    padding: 20px 48px;
    background: #6b4ce6;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #5a3cd5;
}

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

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

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

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

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #6b4ce6;
}

.footer-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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: 32px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #6b4ce6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept {
    background: #6b4ce6;
    color: #ffffff;
}

.btn-accept:hover {
    background: #5a3cd5;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

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

    .section-heading,
    .section-heading-center {
        font-size: 32px;
    }

    .text-large {
        font-size: 18px;
    }

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

    .nav-minimal {
        gap: 24px;
    }

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

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

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

    .section-spacious,
    .services-preview {
        padding: 80px 0;
    }
}
