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

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

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

.main-nav {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 20px;
    font-style: italic;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.editorial-section {
    padding: 80px 20px;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.editorial-section p {
    margin-bottom: 25px;
    font-size: 17px;
}

.editorial-section h2 {
    font-size: 32px;
    margin: 50px 0 25px 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.inline-figure {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

figcaption {
    padding: 15px 20px;
    font-size: 14px;
    font-style: italic;
    color: #666;
    background-color: #f5f5f5;
}

.editorial-quote {
    font-size: 24px;
    font-style: italic;
    margin: 40px 0;
    padding: 30px 40px;
    border-left: 4px solid #c67e38;
    background-color: #f9f9f9;
    color: #2c2c2c;
}

.cta-inline {
    background-color: #fef9f3;
    padding: 35px;
    margin: 50px 0;
    border-left: 3px solid #c67e38;
}

.cta-text {
    font-size: 19px;
    margin-bottom: 18px;
    color: #2c2c2c;
}

.btn-inline {
    display: inline-block;
    background-color: #c67e38;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-inline:hover {
    background-color: #a86a2f;
}

.services-editorial {
    max-width: 900px;
    margin: 60px auto;
}

.service-card-editorial {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-img-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.service-duration {
    font-weight: bold;
    color: #555;
    margin-top: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #c67e38;
    margin: 15px 0 25px 0;
}

.btn-service {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #c67e38;
}

.testimonial-section {
    margin: 60px 0;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 3px solid #c67e38;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    text-align: right;
}

.cta-final {
    margin: 60px 0 40px 0;
    padding: 40px;
    background-color: #fef9f3;
    text-align: center;
}

.cta-final h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-final p {
    font-size: 17px;
    color: #4a4a4a;
}

.form-section {
    background-color: #f5f5f5;
    padding: 70px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 45px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 30px;
    margin-bottom: 35px;
    text-align: center;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c2c2c;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background-color: #c67e38;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.main-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 50px 40px 30px 40px;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    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: 20px;
}

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

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

.btn-cookie {
    background-color: #c67e38;
    color: #ffffff;
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #a86a2f;
}

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

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

.services-page-header {
    padding: 60px 20px;
    background-color: #fef9f3;
    text-align: center;
}

.services-page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero {
    padding: 70px 20px;
    background-color: #f5f5f5;
}

.about-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-page-header {
    padding: 70px 20px;
    background-color: #fef9f3;
}

.contact-page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-section {
    padding: 60px 20px;
}

.contact-info-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.email-display {
    background-color: #f5f5f5;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #2c2c2c;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

.contact-map-card {
    flex: 1;
    min-width: 320px;
}

.contact-map-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.map-placeholder {
    width: 100%;
    background-color: #e0e0e0;
}

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

.map-caption {
    padding: 15px;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.thanks-page-section {
    padding: 80px 20px;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.thanks-info-box {
    background-color: #fef9f3;
    padding: 35px;
    margin: 40px 0;
    text-align: left;
    border-left: 3px solid #c67e38;
}

.thanks-info-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-steps {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
    color: #4a4a4a;
}

.thanks-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 35px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-thanks-primary {
    background-color: #c67e38;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-thanks-primary:hover {
    background-color: #a86a2f;
}

.btn-thanks-secondary {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.thanks-additional-info {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
}

.thanks-additional-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-additional-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.thanks-suggestions {
    list-style-position: inside;
    font-size: 15px;
    line-height: 2;
}

.thanks-suggestions a {
    color: #c67e38;
    text-decoration: none;
}

.thanks-suggestions a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px 0;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px 0;
    color: #2c2c2c;
}

.legal-content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-content a {
    color: #c67e38;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table thead {
    background-color: #f5f5f5;
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    color: #2c2c2c;
    border-bottom: 2px solid #ddd;
}

.cookies-table td {
    padding: 12px;
    font-size: 14px;
    color: #4a4a4a;
    border-bottom: 1px solid #e0e0e0;
}

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

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

    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .editorial-section h2 {
        font-size: 26px;
    }

    .service-card-editorial {
        flex-direction: column;
    }

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

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

    .contact-info-layout {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}