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

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

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

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

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero-editorial {
    position: relative;
    margin: 0 -2rem 2rem -2rem;
}

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

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.hero-text-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

.narrow-text {
    max-width: 100%;
}

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

.opening-line {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: #1a1a1a;
}

.narrow-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.narrow-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.inline-image-section {
    margin: 2.5rem 0;
    background-color: #f5f5f5;
    padding: 0;
}

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

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

.quote-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
}

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

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f0f7ff;
    border-radius: 8px;
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.service-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.service-inline h3 {
    margin-bottom: 1rem;
}

.service-inline p {
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.cta-inline {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.editorial-form {
    margin-top: 2rem;
}

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

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

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

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

.btn-submit {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-disclaimer {
    padding: 2rem;
    background-color: #3a3a3a;
    border-radius: 8px;
}

.footer-disclaimer h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

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

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

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

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #b3b3b3;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #4a4a4a;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.service-card p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

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

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

.about-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    color: #1a1a1a;
}

.about-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.about-image {
    width: 100%;
    height: 400px;
    margin: 2rem 0;
    background-color: #ddd;
    overflow: hidden;
}

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

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

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

.contact-info {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.contact-detail p {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
}

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

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

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

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

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

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.thanks-container .btn-home {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #0052a3;
}

@media (max-width: 768px) {
    .nav-editorial {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .ad-disclosure {
        order: 2;
        font-size: 0.7rem;
    }

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

    .hero-subtext {
        font-size: 1rem;
    }

    .editorial-container {
        padding: 2rem 1rem;
    }

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

    .cookie-actions {
        justify-content: stretch;
        flex-direction: column;
    }
}