* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

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

.btn-cookie-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #357abd;
}

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

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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

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

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

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

.editorial-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-editorial {
    height: 70vh;
    position: relative;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d0d8dc;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.3;
    max-width: 700px;
}

.content-narrow {
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

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

.inline-image {
    margin: 3rem 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e5e5e5;
}

.service-cards-inline {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
    margin-bottom: 4rem;
}

.section-heading {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.service-card {
    max-width: 800px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-body {
    padding: 2rem;
}

.service-body h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-body p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #357abd;
}

.testimonial-block {
    padding: 4rem 2rem;
    background-color: #e8f0f2;
    margin-bottom: 4rem;
}

.testimonial-block blockquote {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial-block cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: #666;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    margin-bottom: 4rem;
}

.form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.form-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid #f0ad4e;
    margin-bottom: 4rem;
}

.disclaimer {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5a5a;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem;
}

.footer-references {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.footer-references h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-references a {
    color: #4a90e2;
    word-break: break-all;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: #4a90e2;
}

.footer-info {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.thanks-page {
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #2c5f2d;
}

.thanks-page p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.thanks-page a {
    color: #4a90e2;
    text-decoration: none;
}

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

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.legal-page p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

.services-page h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
}

.service-item h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-item p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-item .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5f2d;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .service-item {
        flex: 1 1 100%;
    }
}