* {
    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: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    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-buttons {
    display: flex;
    gap: 1rem;
}

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

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

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

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

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

.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Georgia', serif;
}

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

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

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

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

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

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    max-width: 700px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: #fff;
    font-size: 1.3rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.text-section {
    margin-bottom: 3rem;
}

.text-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.intro-text {
    font-size: 1.35rem;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-link {
    color: #8B4513;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #654321;
    border-bottom-color: #654321;
}

.image-section {
    margin: 4rem 0;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.image-caption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
}

.problem-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.problem-list li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.quote-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f5f5f0;
    border-left: 4px solid #8B4513;
}

.quote-section blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.6;
}

.quote-section footer {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

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

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

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

.service-item {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
}

.service-item.featured {
    border: 2px solid #8B4513;
    background-color: #fffef9;
}

.badge-featured {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: #8B4513;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

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

.service-item p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.service-includes {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 1.5rem;
}

.price-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-top: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin: 1.5rem 0;
}

.btn-service {
    padding: 1rem 2rem;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-service.primary {
    background-color: #8B4513;
}

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

.cta-section-large {
    background-color: #8B4513;
    color: #fff;
    padding: 4rem 3rem;
    text-align: center;
    margin: 4rem 0;
    border-radius: 4px;
}

.cta-section-large h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section-large p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #fff;
    color: #8B4513;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #f5f5f0;
    transform: scale(1.05);
}

.form-container {
    margin: 3rem 0;
    background-color: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

.service-display {
    background-color: #f5f5f0;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: none;
}

.service-display.active {
    display: block;
}

.service-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B4513;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #8B4513;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #8B4513;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #654321;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.5);
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

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

.thanks-container p {
    font-size: 1.2rem;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.service-selected {
    background-color: #f5f5f0;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #8B4513;
    font-weight: 600;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #8B4513;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #654321;
}

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

    .nav-links {
        gap: 1rem;
    }

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

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

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

    .text-section h2 {
        font-size: 1.6rem;
    }

    .text-section p {
        font-size: 1.05rem;
    }

    .quote-section {
        padding: 2rem 1.5rem;
    }

    .quote-section blockquote {
        font-size: 1.1rem;
    }

    .service-item {
        padding: 2rem 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}

.contact-page {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

.contact-info {
    background-color: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 1.1rem;
    color: #3a3a3a;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem 4rem;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #3a3a3a;
}

.about-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem 4rem;
}

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

.about-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.about-page p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.services-page {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem 4rem;
}

.services-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

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

.last-update {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}