* {
    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: #2c2c2c;
    background-color: #fefefe;
}

.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.editorial-flow {
    max-width: 800px;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-wrap {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: #e8e5e0;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 2px;
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-text-overlay p {
    font-size: 1.15rem;
    color: #555;
}

.story-content {
    padding: 0 2rem 4rem;
}

.story-content section {
    margin-bottom: 4rem;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.story-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.inline-image {
    margin: 3rem 0;
    background-color: #f0ede8;
}

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

.insight-card {
    background: #f9f8f6;
    padding: 2.5rem;
    border-left: 4px solid #c9a876;
    margin: 2rem 0;
}

.insight-card a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
}

.insight-card a:hover {
    text-decoration: underline;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 4px;
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.testimonials-inline blockquote {
    background: #f5f5f5;
    padding: 2rem;
    border-left: 3px solid #a89279;
    font-style: italic;
}

.testimonials-inline p {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    padding-left: 1.5rem;
    border-left: 2px solid #d4c5b0;
}

.benefit-item strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 2rem;
    border-radius: 2px;
    background-color: #fafafa;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b7355;
    margin: 1.5rem 0 1rem;
}

.cta-select {
    width: 100%;
    padding: 1rem;
    background: #3a3a3a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-select:hover {
    background: #1a1a1a;
}

.form-section {
    background: #f5f5f5;
    padding: 3rem 2rem;
    margin: 4rem -2rem 3rem;
}

.consultation-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

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

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: #3a3a3a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1a1a1a;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.trust-item {
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 4px;
}

.trust-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.references-section {
    background: #f9f8f6;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 4px;
}

.references-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.75rem;
}

.references-list a {
    color: #8b7355;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #fff9f0;
    border: 1px solid #e8d8c0;
    border-radius: 4px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.site-footer {
    background: #2c2c2c;
    color: #d4d4d4;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-column a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.cookie-accept {
    background: #c9a876;
    color: #fff;
}

.cookie-accept:hover {
    background: #b39563;
}

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

.cookie-reject:hover {
    border-color: #999;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-page a {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3a3a3a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-page a:hover {
    background: #1a1a1a;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .story-content {
        padding: 0 1.5rem 3rem;
    }

    .story-content h2 {
        font-size: 1.6rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

.contact-page,
.about-page,
.services-page,
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-page h1,
.about-page h1,
.services-page h1,
.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-page h2,
.about-page h2,
.services-page h2,
.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.contact-page p,
.about-page p,
.services-page p,
.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.contact-page ul,
.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.contact-page li,
.legal-page li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.info-box {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.info-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.service-item {
    background: #fafafa;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #c9a876;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item .price {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b7355;
    margin-top: 1rem;
}