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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.navigation {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Georgia', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.story-section {
    margin-bottom: 80px;
}

.story-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
}

.story-text.narrow {
    max-width: 620px;
}

.story-image-container {
    width: 100%;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.story-image-container.small {
    max-width: 680px;
    margin: 40px auto;
    padding: 0 20px;
}

.story-image-container.small img {
    border-radius: 4px;
}

h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: normal;
}

.lead {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4a4a4a;
}

p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #3a3a3a;
}

.service-inline-block {
    border-left: 3px solid #8b7355;
    padding-left: 25px;
    margin: 40px 0;
}

.service-inline-block h3 {
    margin-top: 0;
}

.price-inline {
    font-size: 20px;
    color: #8b7355;
    font-weight: bold;
    margin: 15px 0;
}

.cta-link {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Georgia', serif;
    margin-top: 10px;
}

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

.testimonial-inline {
    background-color: #f5f3f0;
    padding: 60px 0;
}

blockquote {
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    border-left: none;
    padding-left: 0;
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.form-section {
    background-color: #fff;
    padding: 60px 0;
}

.editorial-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: 'Georgia', serif;
    background-color: #fafaf8;
}

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

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

.submit-button {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Georgia', serif;
}

.submit-button:hover {
    background-color: #8b7355;
}

.final-image {
    position: relative;
    margin-bottom: 0;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 60px 20px 40px;
}

.closing-statement {
    font-size: 28px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

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

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: normal;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8b7355;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
    font-style: italic;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 15px;
}

.cookie-content a {
    color: #8b7355;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Georgia', serif;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #8b7355;
    color: #fff;
}

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

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

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

.thanks-container {
    max-width: 680px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #fff;
    text-align: center;
    border-top: 4px solid #8b7355;
}

.thanks-container h1 {
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-container .selected-service {
    font-weight: bold;
    color: #8b7355;
    font-size: 20px;
    margin: 25px 0;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    color: #2c2c2c;
    text-decoration: none;
    border-bottom: 1px solid #2c2c2c;
    transition: color 0.3s;
}

.thanks-container .back-link:hover {
    color: #8b7355;
    border-bottom-color: #8b7355;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .lead {
        font-size: 19px;
    }

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

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