:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-secondary: #10b981;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-background: #ffffff;
    --color-background-alt: #f3f4f6;
    --color-border: #e5e7eb;
    --color-accent: #f59e0b;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --max-width-narrow: 720px;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    font-size: 16px;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container.narrow {
    max-width: var(--max-width-narrow);
}

.site-header {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    margin: 0 -20px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.logo:hover {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.cta-button.primary {
    background-color: var(--color-primary);
    color: white;
}

.cta-button.primary:hover {
    background-color: var(--color-primary-dark);
    color: white;
}

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

.cta-button.secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.cta-button.full-width {
    width: 100%;
}

.intro-section {
    padding: 80px 20px;
    background-color: var(--color-background);
}

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

.intro-section p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.story-section {
    padding: 60px 20px;
    background-color: var(--color-background-alt);
}

.story-block {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-block.left {
    flex-direction: row;
}

.story-block.right {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
}

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.story-text p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.problem-section {
    padding: 80px 20px;
    background-color: var(--color-background);
}

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

.problem-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--color-background-alt);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.problem-icon {
    margin-bottom: 16px;
    color: var(--color-accent);
}

.problem-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--color-text-light);
    font-size: 15px;
}

.insight-section {
    padding: 60px 20px;
    background-color: var(--color-primary);
    color: white;
}

.insight-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
}

.insight-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.insight-box p {
    font-size: 17px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.insight-box a {
    color: #fbbf24;
}

.trust-section {
    padding: 80px 20px;
    background-color: var(--color-background-alt);
}

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

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
}

.trust-label {
    font-size: 16px;
    color: var(--color-text-light);
}

.testimonial-section {
    padding: 80px 20px;
    background-color: var(--color-background);
}

.testimonial-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: var(--color-background-alt);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
}

.author-location {
    font-size: 14px;
    color: var(--color-text-light);
}

.products-reveal-section {
    padding: 80px 20px;
    background-color: var(--color-background-alt);
}

.products-reveal-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}

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

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--color-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
}

.product-details {
    padding: 24px;
}

.product-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.product-details p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.benefits-section {
    padding: 80px 20px;
    background-color: var(--color-background);
}

.benefits-wrapper {
    display: flex;
    gap: 48px;
    align-items: center;
}

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.benefits-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.form-section {
    padding: 80px 20px;
    background-color: var(--color-background-alt);
}

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

.form-section > .container > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.order-form {
    background-color: var(--color-background);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-main);
    transition: border-color 0.2s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
}

.disclaimer-section {
    padding: 40px 20px;
    background-color: var(--color-background);
}

.disclaimer-text {
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.7;
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

.footer-column ul a {
    color: #9ca3af;
    font-size: 14px;
}

.footer-column ul a:hover {
    color: white;
}

.footer-references {
    border-top: 1px solid #374151;
    padding-top: 24px;
    margin-bottom: 24px;
}

.footer-references h5 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #9ca3af;
}

.footer-references ol {
    list-style: none;
    font-size: 12px;
}

.footer-references li {
    margin-bottom: 6px;
    color: #6b7280;
}

.footer-references a {
    color: #6b7280;
}

.footer-references a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-text);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--color-accent);
}

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

.cookie-buttons .cta-button {
    padding: 10px 20px;
    font-size: 14px;
}

.page-header {
    background-color: var(--color-background-alt);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--color-text-light);
    font-size: 18px;
}

.page-content {
    padding: 60px 20px;
}

.page-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

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

.page-content li {
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 40px 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
}

.service-card-content {
    padding: 24px;
}

.service-card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card-content p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contact-info {
    background-color: var(--color-background-alt);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.about-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.about-text h2 {
    margin-top: 0;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-background);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .story-block,
    .story-block.left,
    .story-block.right {
        flex-direction: column;
    }

    .benefits-wrapper {
        flex-direction: column;
    }

    .about-content {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
    }

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

    .order-form {
        padding: 24px;
    }
}
