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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    min-width: 300px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #d4a574;
    color: #1a1a1a;
}

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

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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-disclaimer {
    font-size: 11px;
    color: #888;
    font-style: italic;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4a574;
}

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

.hero-editorial {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #c4b5a0;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

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

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.story-intro {
    background-color: #fefefe;
    padding: 80px 20px;
}

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

.lead-paragraph {
    font-size: 24px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    font-weight: 400;
}

.story-width p {
    margin-bottom: 28px;
    font-size: 18px;
    color: #3a3a3a;
}

.story-width h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 600;
}

.inline-image-wrapper {
    margin: 50px 0;
    background-color: #f5f2ed;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.link-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.link-cta:hover {
    background-color: #c49563;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f7f4;
    border-left: 4px solid #d4a574;
}

.testimonial-inline blockquote {
    font-style: italic;
    color: #444;
}

.testimonial-inline p {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-inline footer {
    font-size: 15px;
    color: #666;
    font-weight: 600;
    font-style: normal;
}

.services-editorial {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 0;
    overflow: hidden;
}

.service-card-editorial img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #d4c4b0;
}

.service-card-editorial h3 {
    font-size: 26px;
    margin: 25px 25px 15px 25px;
    color: #2c2c2c;
}

.service-card-editorial p {
    margin: 0 25px 15px 25px;
    font-size: 16px;
    color: #4a4a4a;
}

.price-editorial {
    font-size: 20px;
    font-weight: 700;
    color: #d4a574;
    margin: 20px 25px 25px 25px;
}

.form-section-editorial {
    margin: 80px 0;
    padding: 50px;
    background-color: #f5f2ed;
    border-radius: 2px;
}

.form-section-editorial h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-section-editorial > p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit-editorial {
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #fff8f0;
    border: 1px solid #e8d7c3;
}

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

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
}

.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: #d4a574;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

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

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

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .story-width {
        padding: 0 20px;
    }

    .form-section-editorial {
        padding: 30px 20px;
    }
}