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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fafafa;
}

.ad-notice {
    background: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background: white;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

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

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

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

.hero-minimal {
    padding: 120px 60px 80px;
    background: white;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 22px;
    color: #666;
    font-weight: 300;
}

.hero-image-wrap {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

.intro-section {
    padding: 100px 60px;
    background: #f9f9f9;
}

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

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.insight-block {
    padding: 100px 60px;
    background: white;
}

.split-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

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

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

.services-preview {
    padding: 100px 60px;
    background: #fafafa;
}

.content-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: white;
    width: calc(50% - 15px);
    max-width: 500px;
    padding: 0;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    display: block;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 25px 15px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 600;
    color: #2a2a2a;
    margin: 20px 25px;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background: #2a2a2a;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #444;
}

.form-section {
    padding: 100px 60px;
    background: white;
}

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

.form-container h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.main-form {
    background: #f9f9f9;
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ddd;
    background: white;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #2a2a2a;
    color: white;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #444;
}

.philosophy-section {
    padding: 100px 60px;
    background: #f5f5f5;
}

.philosophy-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}

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

.main-footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ddd;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 30px;
}

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

.cookie-content a {
    color: #2a2a2a;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background: #2a2a2a;
    color: white;
}

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

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

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

.disclaimer-notice {
    background: #f9f9f9;
    padding: 40px 60px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-notice p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-minimal {
        padding: 60px 30px 40px;
    }

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

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

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

    .service-card {
        width: 100%;
    }

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

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