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

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a472a;
    text-decoration: none;
    font-family: 'Helvetica', sans-serif;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Helvetica', sans-serif;
    font-size: 15px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

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

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-story {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
    margin-bottom: 40px;
}

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

.story-container {
    padding: 0 40px;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a472a;
    font-weight: 700;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.narrative-section {
    padding: 60px 0;
}

.narrative-section p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #34495e;
}

h2 {
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 30px;
    color: #1a472a;
    font-weight: 600;
}

h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.inline-image {
    margin: 50px 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.citation {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-block {
    background-color: #e8f5e9;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #27ae60;
}

.insight-block h3 {
    margin-top: 0;
    color: #1a472a;
}

.insight-block p {
    margin-bottom: 0;
}

.cta-inline {
    background-color: #1a472a;
    color: #ffffff;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
}

.cta-inline h3 {
    color: #ffffff;
    margin-top: 0;
}

.cta-inline p {
    color: #e0e0e0;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-block {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 50px 0;
    font-style: italic;
    border-left: 4px solid #95a5a6;
}

.testimonial-block p {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-block cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 40px;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: 20px 0;
    background-color: #ecf0f1;
}

.service-card p {
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    font-family: 'Helvetica', sans-serif;
}

.btn-select {
    display: inline-block;
    background-color: #1a472a;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-family: 'Helvetica', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-select:hover {
    background-color: #27ae60;
}

.service-card.selected {
    border: 3px solid #27ae60;
    background-color: #e8f5e9;
}

.order-form-section {
    background-color: #f8f9fa;
    padding: 50px;
    margin: 60px 0;
}

.order-form-section h2 {
    margin-top: 0;
}

#selectedServiceName {
    color: #27ae60;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Helvetica', sans-serif;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 40px;
    margin: 60px 0;
    font-size: 14px;
    color: #7f8c8d;
}

.disclaimer-section h3 {
    margin-top: 0;
    font-size: 18px;
    color: #2c3e50;
}

.disclaimer-section p {
    font-size: 14px;
    margin-bottom: 0;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-family: 'Helvetica', sans-serif;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
}

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

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
    font-size: 14px;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px;
    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 {
    flex: 1;
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-family: 'Helvetica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-header {
    background-color: #1a472a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 0;
}

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

.page-content h2 {
    margin-top: 50px;
}

.page-content p,
.page-content li {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-item p {
    color: #7f8c8d;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .story-container {
        padding: 0 20px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 18px;
    }

    .narrative-section p {
        font-size: 16px;
    }

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

    .main-nav {
        gap: 15px;
        font-size: 14px;
    }
}