* {
    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: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    margin: 0;
    font-size: 0.9rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #d4af37;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #f5f5f5;
}

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

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

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

.editorial-layout {
    background-color: #ffffff;
}

.story-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.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: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
}

.content-section {
    padding: 4rem 2rem;
}

.content-section.bg-alternate {
    background-color: #f5f5f5;
}

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

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

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

.inline-image {
    margin: 3rem 0;
    background-color: #e8e8e8;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

.btn-primary:hover {
    background-color: #c19b2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.services-editorial {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.section-intro {
    font-size: 1.2rem;
    color: #666666;
    text-align: center;
    margin-bottom: 3rem;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.card-content {
    padding: 2rem;
}

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

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

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.8rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-select-service.selected {
    background-color: #d4af37;
    color: #1a1a1a;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    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: 'Arial', sans-serif;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    margin-top: 1rem;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.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 h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #d4af37;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888888;
}

.contact-info-block {
    background-color: #f5f5f5;
    padding: 2rem;
    border-left: 4px solid #d4af37;
    margin: 2rem 0;
}

.contact-info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-block p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contact-info-block .email-text {
    color: #666666;
    font-family: 'Courier New', monospace;
}

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

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

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

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

.about-image {
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 2rem 0;
    background-color: #e8e8e8;
}

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

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

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

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666666;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #666666;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.thanks-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666666;
}

.service-selected {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #d4af37;
}

.service-selected strong {
    color: #1a1a1a;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 2.2rem;
    }

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

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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