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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.ad-disclosure {
    background: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b7355;
}

.editorial-content {
    background: #ffffff;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #d4c5b0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    max-width: 800px;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-narrow h2 {
    font-size: 1.9rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

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

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

.inline-image figcaption {
    padding: 1rem;
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    text-align: center;
    background: #f5f5f5;
}

.cta-inline {
    text-align: center;
    margin: 2.5rem 0;
}

.btn-text {
    display: inline-block;
    color: #8b7355;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid #8b7355;
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.btn-text:hover {
    color: #6b5335;
    border-color: #6b5335;
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #8b7355;
    background: #f9f7f4;
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background-color: #f8f6f3;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.service-card .price {
    font-weight: 600;
    color: #8b7355;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
}

.btn-card {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem 1.8rem;
    background: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-card:hover {
    background: #6b5335;
}

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

.contact-form-section h2 {
    margin-top: 0;
    text-align: center;
}

.contact-form-section > p {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    background: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #6b5335;
}

.disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    border-left: 3px solid #999;
}

.main-footer {
    background: #2c2c2c;
    color: #cccccc;
    padding: 3rem 2rem;
}

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

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

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 2rem;
    flex-wrap: wrap;
}

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

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

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-cookie {
    background: #8b7355;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #6b5335;
}

.btn-cookie-secondary {
    background: #444;
    color: #ffffff;
}

.btn-cookie-secondary:hover {
    background: #555;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

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

    .content-narrow {
        padding: 2rem 1.5rem;
    }

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

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