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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-minimal {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 3rem;
    background: #ffffff;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    font-weight: 300;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    margin-top: 3rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #f5f5f5;
}

.intro-section {
    padding: 8rem 3rem;
    background: #f9f9f9;
}

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

.large-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 2rem;
    font-weight: 300;
}

.insight-block {
    padding: 0;
    background: #ffffff;
}

.insight-container {
    display: flex;
    min-height: 600px;
}

.insight-text {
    flex: 1;
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.insight-visual {
    flex: 1;
    background-color: #ececec;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.philosophy-section {
    padding: 8rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.philosophy-section h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-grid {
    display: flex;
    gap: 4rem;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
}

.testimonial-inline {
    padding: 6rem 3rem;
    background: #f4f4f4;
}

.testimonial-inline blockquote {
    border-left: none;
    padding: 0;
}

.testimonial-inline p {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

.services-preview {
    padding: 8rem 3rem;
    background: #ffffff;
}

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

.content-centered h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 5rem;
}

.services-cards {
    display: flex;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    padding: 3rem 2rem;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    transition: transform 0.2s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.btn-service {
    width: 100%;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-service:hover {
    background: #333;
}

.form-section {
    padding: 8rem 3rem;
    background: #f9f9f9;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

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

.disclaimer-section {
    padding: 4rem 3rem;
    background: #efefef;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bbb;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 3rem;
    display: none;
    z-index: 200;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .insight-container {
        flex-direction: column;
    }

    .insight-text {
        padding: 3rem 2rem;
    }

    .philosophy-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .services-cards {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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