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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
}

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

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

.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;
}

.editorial-container {
    max-width: 100%;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.story-intro,
.trust-builder,
.testimonials-inline,
.order-section,
.disclaimer-section,
.references-section {
    padding: 60px 20px;
}

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

.story-lead {
    font-size: 22px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 30px;
    font-style: italic;
}

.story-intro p,
.trust-builder p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
}

.story-intro h2,
.trust-builder h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 50px 0 20px 0;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.inline-image-block img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

.image-caption {
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

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

.btn-text-link {
    font-size: 18px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #2980b9;
}

.product-story-card {
    display: flex;
    gap: 40px;
    margin: 60px 0;
    align-items: flex-start;
}

.product-story-card.reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    min-width: 280px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.product-story-content {
    flex: 1;
}

.product-story-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-story-content p {
    margin-bottom: 15px;
}

.product-benefit {
    font-size: 16px;
    color: #27ae60;
    font-weight: 500;
}

.product-pricing {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.btn-select,
.btn-submit {
    background-color: #3498db;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover,
.btn-submit:hover {
    background-color: #2980b9;
}

.testimonials-inline {
    background-color: #ecf0f1;
}

.testimonial-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.testimonial-quote p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

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

.order-section {
    background-color: #f8f9fa;
}

.order-form {
    margin-top: 30px;
}

.form-field {
    margin-bottom: 20px;
}

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-field input[readonly] {
    background-color: #ecf0f1;
    color: #7f8c8d;
}

.disclaimer-section {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-text {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

.references-section {
    background-color: #f8f9fa;
}

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

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px 20px;
}

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

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

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

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

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

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

.footer-section ul a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

.page-header {
    text-align: center;
    padding: 80px 20px 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    font-weight: 400;
}

.services-page,
.about-page,
.contact-page,
.legal-page {
    min-height: 60vh;
}

.services-grid {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.service-card.featured {
    border: 3px solid #f39c12;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f39c12;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

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

.service-content {
    flex: 1;
    padding: 30px;
}

.service-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin: 20px 0;
}

.service-price-old {
    font-size: 20px;
    color: #95a5a6;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.order-section-page {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.order-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.order-container p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.about-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-section {
    display: flex;
    gap: 60px;
    margin: 80px 0;
    align-items: center;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
}

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

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-info-section {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-image-card {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
}

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

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 36px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.order-details {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.selected-service {
    font-size: 17px;
    color: #2c3e50;
}

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

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.thanks-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
}

.thanks-contact p {
    font-size: 15px;
    color: #7f8c8d;
}

.legal-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-update {
    font-size: 16px;
    color: #95a5a6;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table thead {
    background-color: #ecf0f1;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .product-story-card,
    .product-story-card.reverse,
    .service-card,
    .about-section,
    .about-section.reverse,
    .contact-info-section {
        flex-direction: column;
    }

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

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

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