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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a472a;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #777;
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 3px;
}

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

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

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #d4c5a9;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(26, 71, 42, 0.75);
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.3;
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 300;
}

.narrative-intro,
.about-content,
.services-intro,
.contact-section,
.closing-section,
.disclaimer-section {
    padding: 4rem 2rem;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
}

.opening-line {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #1a472a;
    line-height: 1.6;
}

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

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

.narrow-text h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #2c2c2c;
}

.inline-image-wrapper {
    margin: 3rem 0;
}

.inline-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8dcc8;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.8rem;
}

.benefit-list,
.about-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li,
.about-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.benefit-list li:before,
.about-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a472a;
}

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

.link-cta {
    color: #1a472a;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid #1a472a;
    padding-bottom: 3px;
    transition: opacity 0.3s ease;
}

.link-cta:hover {
    opacity: 0.7;
}

.testimonial {
    border-left: 4px solid #1a472a;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
}

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

.services-cards {
    padding: 3rem 2rem;
    background-color: #fafafa;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

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

.card-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #d4c5a9;
}

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

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
    font-weight: 400;
}

.card-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a472a;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a472a;
}

.select-service {
    padding: 0.7rem 1.5rem;
    background-color: #1a472a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2d6840;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

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

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

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

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #1a472a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2d6840;
}

.final-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a472a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2d6840;
}

.disclaimer-section {
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-accept {
    background-color: #1a472a;
    color: #ffffff;
}

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

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

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

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

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 4rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 1rem;
    font-weight: 400;
}

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.selected-service-display {
    font-size: 1rem;
    color: #1a472a;
    font-weight: 500;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #666;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #555;
}

.legal-main {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.legal-content h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.7;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.about-hero,
.services-intro {
    padding: 3rem 2rem;
    background-color: #f5f5f5;
}

.contact-details {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    color: #1a472a;
    margin-bottom: 0.8rem;
}

.contact-item p {
    line-height: 1.8;
}

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

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

.contact-info h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: #1a472a;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .subheadline {
        font-size: 1rem;
    }

    .narrow-text h2 {
        font-size: 1.6rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}