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

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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    opacity: 0.75;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 30px;
}

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

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-style: italic;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

.narrative-intro p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.narrative-intro h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 50px 0 25px;
    color: #1a1a1a;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.inline-image-block figcaption {
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.services-inline {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.services-inline h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 20px 0;
}

.select-service-btn {
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-section h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-left: 4px solid #2c5f2d;
}

.selected-service-display p {
    margin: 0;
    font-size: 1rem;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
}

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

.submit-btn {
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1f4420;
}

.closing-narrative {
    padding: 80px 0;
    background-color: #fafafa;
}

.closing-narrative h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.closing-narrative p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.site-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 20px;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 30px;
    border-top: 1px solid #333;
    padding-top: 30px;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px 30px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #a8d5a8;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2c5f2d;
    color: #fff;
}

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

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

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

.page-header {
    background-color: #f5f5f5;
    padding: 80px 0 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.about-intro h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 50px 0 25px;
    color: #1a1a1a;
}

.about-intro p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.services-detailed {
    padding: 40px 0;
}

.service-detail-block {
    margin-bottom: 70px;
}

.service-detail-block h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 30px 0 20px;
    color: #1a1a1a;
}

.service-detail-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-price-display {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 25px 0;
}

.cta-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c5f2d;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.contact-info {
    padding: 40px 0;
}

.contact-details-block {
    margin-bottom: 50px;
}

.contact-details-block h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    background-color: #f5f5f5;
    padding: 25px 30px;
    margin-top: 40px;
    border-left: 4px solid #2c5f2d;
}

.contact-note p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 40px 0 20px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #2c2c2c;
}

.legal-page h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #4a4a4a;
}

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

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-message {
    text-align: center;
    margin-bottom: 50px;
}

.thanks-message h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-details {
    background-color: #e8f5e9;
    padding: 20px 30px;
    margin: 30px 0;
    border-left: 4px solid #2c5f2d;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c5f2d;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1f4420;
}

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

    .lead {
        font-size: 1.1rem;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .service-card {
        flex-direction: column;
    }
}