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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

a {
    color: #4a3728;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #7d5a3f;
}

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

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

.header-minimal {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a3728;
}

.brand a {
    color: inherit;
}

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

.nav-inline a {
    font-size: 0.95rem;
    font-weight: 500;
}

.ad-label {
    font-size: 0.8rem;
    color: #888;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.editorial-flow {
    background: #ffffff;
}

.story-container {
    padding-bottom: 80px;
}

.hero-editorial {
    padding: 100px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, #f9f7f4 0%, #ffffff 100%);
}

.title-large {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.subtitle-text {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.inline-image,
.inline-image-small {
    margin: 60px 0;
    background-color: #f5f5f5;
}

.inline-image img,
.inline-image-small img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inline-image-small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    margin: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #2c2c2c;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #444;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
}

.inline-cta {
    background: #f9f7f4;
    padding: 50px 40px;
    text-align: center;
    margin: 80px 0;
    border-left: 4px solid #7d5a3f;
}

.inline-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.btn-primary,
.btn-primary-large {
    display: inline-block;
    padding: 14px 35px;
    background: #4a3728;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: #7d5a3f;
    color: #ffffff;
}

.btn-primary-large {
    font-size: 1.1rem;
    padding: 18px 45px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: #ffffff;
    color: #4a3728;
    border: 2px solid #4a3728;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #4a3728;
    color: #ffffff;
}

.testimonial-inline {
    margin: 80px 0;
    padding: 40px 50px;
    background: #f3ede5;
    border-left: 5px solid #4a3728;
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.product-card {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    background: #fafafa;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e8;
}

.product-info {
    padding: 40px;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.product-info p {
    margin-bottom: 20px;
    color: #444;
}

.product-note {
    font-size: 0.95rem;
    color: #7d5a3f;
    font-style: italic;
}

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

.service-item {
    padding: 30px;
    background: #f9f7f4;
    border-left: 4px solid #7d5a3f;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.cta-text {
    font-size: 1.3rem;
    text-align: center;
    margin: 60px 0 30px;
    font-weight: 600;
}

.faq-item {
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item strong {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.disclaimer-section {
    margin: 80px 0;
    padding: 40px;
    background: #fff8dc;
    border: 1px solid #e8d7a8;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

.references-section {
    margin: 60px 0;
    padding: 40px;
    background: #f5f5f5;
}

.references-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.references-list li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.references-list a {
    color: #4a3728;
    word-break: break-all;
}

.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.8;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #999;
}

.services-page {
    padding: 60px 0;
    background: #ffffff;
}

.services-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.7;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-content {
    padding: 40px;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7d5a3f;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    color: #444;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7d5a3f;
    font-weight: 700;
}

.btn-select {
    display: inline-block;
    padding: 12px 30px;
    background: #4a3728;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
    margin-top: 20px;
}

.btn-select:hover {
    background: #7d5a3f;
}

.order-form-section {
    margin-top: 80px;
    padding: 60px 40px;
    background: #f9f7f4;
}

.order-form-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7d5a3f;
}

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    cursor: pointer;
}

.btn-submit {
    padding: 15px 40px;
    background: #4a3728;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #7d5a3f;
}

.about-page,
.contact-page,
.thanks-page {
    padding: 60px 0;
    background: #ffffff;
}

.about-page h1,
.contact-page h1,
.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.about-intro,
.contact-intro {
    margin-bottom: 60px;
}

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

.about-image {
    margin: 60px 0;
    background-color: #f5f5f5;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-content {
    margin: 40px 0;
}

.about-content h2 {
    font-size: 1.8rem;
    margin: 50px 0 25px;
    color: #1a1a1a;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.cta-section {
    margin: 80px 0;
    padding: 50px;
    background: #f9f7f4;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #4a3728;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.note-text {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

.contact-image-section {
    flex: 1;
}

.contact-image-section figure {
    background-color: #f5f5f5;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq-section {
    margin: 80px 0;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-list .faq-item {
    padding: 30px;
    background: #fafafa;
    border-left: 4px solid #7d5a3f;
}

.faq-list .faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-list .faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-message {
    margin: 40px 0;
    padding: 40px;
    background: #e8f5e9;
    border-radius: 8px;
}

.order-summary {
    margin: 40px 0;
    padding: 30px;
    background: #f9f7f4;
    text-align: left;
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    padding: 25px;
    background: #fafafa;
    border-left: 4px solid #7d5a3f;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #4a3728;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.preparation-tips {
    margin: 60px 0;
    text-align: left;
}

.preparation-tips h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.preparation-tips p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #444;
}

.tips-list {
    list-style: none;
    padding-left: 0;
}

.tips-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1rem;
    color: #444;
}

.tips-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7d5a3f;
    font-weight: 700;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 0;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #4a3728;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.95rem;
}

.btn-accept {
    background: #7d5a3f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #9a7356;
}

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

.btn-reject:hover {
    background: #777;
}

@media (max-width: 768px) {
    .title-large {
        font-size: 2rem;
    }

    .subtitle-text {
        font-size: 1.05rem;
    }

    .nav-inline {
        gap: 15px;
        font-size: 0.9rem;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .testimonial-inline {
        padding: 30px 25px;
    }

    .product-info,
    .service-content {
        padding: 30px 20px;
    }

    .order-form-section {
        padding: 40px 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .product-card {
        flex-direction: row;
    }

    .product-card img {
        width: 40%;
        height: auto;
    }

    .product-info {
        width: 60%;
    }

    .contact-grid {
        flex-direction: row;
    }
}