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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b9a6a;
    --accent-color: #d4a373;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
}

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

.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    background-color: var(--accent-color);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.story-header {
    text-align: center;
    margin-bottom: 50px;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-lead {
    font-size: 22px;
    color: var(--text-light);
    font-style: italic;
}

.story-image-hero {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-intro p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.inline-cta-block.centered {
    background-color: var(--bg-light);
    padding: 50px 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.btn-primary-story,
.btn-secondary-story {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-story {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary-story:hover {
    background-color: #234a3d;
}

.btn-secondary-story {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-story:hover {
    background-color: var(--primary-color);
    color: white;
}

.story-section {
    margin: 60px 0;
    padding: 40px 0;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-columns {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.col-story {
    flex: 1;
}

.col-story h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.col-story p {
    font-size: 17px;
}

.story-image-inline {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.dark-bg {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px !important;
    margin-left: -20px;
    margin-right: -20px;
}

.dark-bg h2 {
    color: var(--bg-white);
}

.list-story {
    margin-top: 40px;
}

.list-item-story {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.number-badge {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.list-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--bg-white);
}

.list-content p {
    font-size: 17px;
    color: #d4d4d4;
}

.testimonial-story {
    margin: 40px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-story blockquote {
    font-style: italic;
}

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

.testimonial-story cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.light-bg {
    background-color: var(--bg-light);
    padding: 50px 40px !important;
    margin-left: -20px;
    margin-right: -20px;
}

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

.checklist-story li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 18px;
}

.checklist-story li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 22px;
}

.services-wrapper {
    margin: 80px 0;
    padding: 60px 40px;
    background-color: var(--bg-light);
    margin-left: -20px;
    margin-right: -20px;
}

.services-wrapper h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.service-price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #234a3d;
}

.form-section {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-left: -20px;
    margin-right: -20px;
}

.form-section.hidden {
    display: none;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.selected-service-info {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 16px;
}

.final-cta-section {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--primary-color);
    color: white;
    margin: 80px 0;
    margin-left: -20px;
    margin-right: -20px;
}

.final-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.final-cta-section p {
    font-size: 19px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-final-cta {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-final-cta:hover {
    transform: scale(1.05);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .story-header h1 {
        font-size: 32px;
    }

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

    .content-columns {
        flex-direction: column;
        gap: 30px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 12px 24px;
        font-size: 14px;
    }
}
