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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 1000;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #16a085;
}

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

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

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

.narrative-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 60px 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 16px;
    max-width: 800px;
}

.hero-intro {
    font-size: 20px;
    max-width: 600px;
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.story-content section {
    margin-bottom: 70px;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #16a085;
}

.story-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.inline-image-block {
    margin: 40px 0;
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.image-caption {
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 10px;
    text-align: center;
}

.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #16a085;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.testimonial-inline {
    background-color: #ecf0f1;
    padding: 30px;
    border-left: 4px solid #16a085;
    margin: 30px 0;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    text-align: right;
}

.materials-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.section-intro {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
    text-align: center;
}

.material-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.material-card {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 360px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.material-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
}

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

.material-price {
    font-size: 20px;
    font-weight: bold;
    color: #16a085;
    padding: 10px 20px;
}

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

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

.form-section {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 30px;
}

.order-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #16a085;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 14px 0 14px 30px;
    position: relative;
    font-size: 17px;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
    font-size: 20px;
}

.inline-cta-centered {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 4px;
    margin-top: 60px;
}

.disclaimer-section h3 {
    margin-bottom: 16px;
    color: #34495e;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

    .story-content h2 {
        font-size: 26px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

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