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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background-color: #4a7c59;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c2c2c;
}

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

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

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

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

.editorial-main {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.story-content {
    background-color: #ffffff;
    padding: 3rem 2.5rem;
}

.story-header {
    margin-bottom: 2.5rem;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.text-block {
    margin: 2.5rem 0;
}

.text-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.text-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

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

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

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

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

.btn-primary:hover {
    background-color: #3a6347;
}

.services-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.services-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f7;
    border-left: 4px solid #4a7c59;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.btn-select {
    padding: 0.7rem 1.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

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

.btn-select.selected {
    background-color: #4a7c59;
}

.form-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f4f4f2;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.form-section p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.inquiry-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
}

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

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

.btn-submit:hover {
    background-color: #3a6347;
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #f0f0ee;
    border-left: 3px solid #999;
}

.disclaimer-section p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.site-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

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

.footer-section p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

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

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

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

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

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

.thanks-message {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 2.5rem;
    background-color: #ffffff;
    text-align: center;
}

.thanks-message h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #4a7c59;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-message .btn-primary {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .editorial-main {
        padding: 0 1.5rem;
    }

    .story-content {
        padding: 2rem 1.5rem;
    }

    .story-header h1 {
        font-size: 2rem;
    }

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