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

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

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

.header-minimal {
    padding: 60px 0 40px;
    background: #ffffff;
    border-bottom: 1px solid #dfe6e9;
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #2d3436;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-right a {
    color: #2d3436;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

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

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

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

.hero-content-center {
    text-align: center;
    margin-bottom: 80px;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    color: #636e72;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 50px;
}

.cta-hero {
    display: inline-block;
    padding: 20px 50px;
    background: #2d3436;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #636e72;
}

.hero-image-full {
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-image-full img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-space {
    padding: 140px 0;
}

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

.section-title-left {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.text-large {
    font-size: 22px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 30px;
}

.services-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.services-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large {
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.service-card-large h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.service-card-large p {
    font-size: 18px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 40px;
}

.price-display {
    font-size: 42px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.btn-service {
    padding: 18px 40px;
    background: #2d3436;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #636e72;
}

.form-section-minimal {
    padding: 120px 0;
}

.form-clean {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

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

.form-group-space label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2d3436;
}

.form-group-space input,
.form-group-space textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    background: #ffffff;
    color: #2d3436;
}

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

.selected-service-display {
    background: #ffffff;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.btn-submit-large {
    width: 100%;
    padding: 20px;
    background: #2d3436;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit-large:hover {
    background: #636e72;
}

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

.image-divider {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.image-divider img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #636e72;
    text-align: center;
}

.footer-minimal {
    padding: 80px 0 40px;
    background: #2d3436;
    color: #ffffff;
}

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

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #b2bec3;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #b2bec3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2d3436;
    color: #ffffff;
    padding: 30px;
    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;
    gap: 30px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #ffffff;
    color: #2d3436;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.thanks-content p {
    font-size: 20px;
    color: #636e72;
    margin-bottom: 50px;
    max-width: 600px;
}

.btn-home {
    display: inline-block;
    padding: 18px 40px;
    background: #2d3436;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #636e72;
}

.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background: #f8f9fa;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

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

.page-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

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

.page-content ul {
    margin: 20px 0 20px 40px;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .container-wide,
    .container-narrow {
        padding: 0 20px;
    }

    .hero-title-large {
        font-size: 42px;
    }

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

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

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

    .nav-right {
        flex-direction: column;
        gap: 15px;
        align-items: flex-end;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }
}