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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #c4a886;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c2c2c;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
}

.editorial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e6e1;
}

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

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

.hero-text-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    font-style: italic;
}

.content-narrow h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #2c2c2c;
}

.content-narrow h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.content-narrow h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #444;
}

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

.content-narrow ul,
.content-narrow ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-narrow li {
    margin-bottom: 0.5rem;
}

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

.content-narrow a:hover {
    color: #6b5335;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: #e8e6e1;
}

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

.services-inline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.service-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
}

.service-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: #e8e6e1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

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

.price-tag {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8b7355;
    margin-bottom: 1rem;
}

.cta-inline {
    padding: 0.75rem 1.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #444;
}

.form-section {
    background-color: #f5f4f0;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

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

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

.disclaimer {
    background-color: #f9f8f5;
    border-left: 3px solid #8b7355;
    padding: 1.5rem;
    margin: 2.5rem 0;
    font-size: 0.95rem;
    color: #555;
}

.disclaimer p {
    margin-bottom: 0;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

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

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

.footer-column a {
    color: #d4b896;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

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

.thanks-section {
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-section ul {
    text-align: left;
    max-width: 500px;
    margin: 1.5rem auto;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
}

.btn-secondary:hover {
    background-color: #f5f4f0;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-disclosure {
        text-align: center;
    }

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

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

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