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

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

.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: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6849;
}

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

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

.site-header {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.ad-disclosure {
    background-color: #fffbe6;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #8b7500;
    border-bottom: 1px solid #e6daa6;
}

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

.brand {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
}

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

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

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

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

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

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 20px;
    font-style: italic;
}

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

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

.wide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.opening-line {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    color: #4a7c59;
}

.story-intro p {
    margin-bottom: 24px;
    font-size: 18px;
}

.inline-image-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.inline-img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.inline-image-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: normal;
}

.inline-image-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

.services-preview {
    padding: 100px 20px;
    background-color: #f4f4f4;
}

.centered-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: normal;
}

.service-cards-editorial {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    width: 340px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

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

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

.service-card h3 {
    padding: 20px 20px 12px;
    font-size: 20px;
    font-weight: normal;
}

.service-card p {
    padding: 0 20px 12px;
    font-size: 15px;
    line-height: 1.6;
}

.service-card .price {
    font-weight: bold;
    color: #4a7c59;
    font-size: 18px;
    padding: 12px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #3d6849;
}

.contact-form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: normal;
}

.contact-form-section > .narrow-content > p {
    margin-bottom: 32px;
    font-size: 17px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #cccccc;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    padding: 16px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 17px;
    transition: background-color 0.3s;
}

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

.final-thought {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.closing-statement {
    font-size: 28px;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #aaaaaa;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.service-selected-notice {
    background-color: #e8f5e9;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-left: 4px solid #4a7c59;
    font-size: 15px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f9f9f9;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: normal;
    color: #4a7c59;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #3d6849;
}

.page-header {
    background-color: #f4f4f4;
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: normal;
    color: #2c2c2c;
}

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

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: normal;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

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

.service-item {
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #4a7c59;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.service-item h3 {
    margin-top: 0;
    color: #2c2c2c;
}

.service-item .service-price {
    font-size: 20px;
    font-weight: bold;
    color: #4a7c59;
    margin-top: 16px;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-section img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    background-color: #e0e0e0;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-top: 0;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 40px;
    margin-top: 40px;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
}

.contact-detail-item strong {
    font-size: 15px;
    margin-bottom: 6px;
    color: #4a7c59;
}

.contact-detail-item span {
    font-size: 16px;
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

    .hero-text-overlay h1 {
        font-size: 28px;
    }

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

    .service-cards-editorial {
        flex-direction: column;
        align-items: center;
    }

    .about-section {
        flex-direction: column;
    }

    .about-section img {
        width: 100%;
    }

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