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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.nav-disclaimer {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #27ae60;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.7), rgba(41, 128, 185, 0.6));
    z-index: 2;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.container-split.reverse {
    flex-direction: row-reverse;
}

.split-content,
.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image {
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-intro {
    background-color: #f8f9fa;
}

.story-intro h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.problem-section {
    background-color: #ffffff;
}

.problem-section h3 {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.problem-section p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.problem-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.problem-section a:hover {
    text-decoration: underline;
}

.insight-section {
    background-color: #ecf0f1;
}

.insight-section h2 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.insight-section p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefits-cards {
    background-color: #ffffff;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #ecf0f1;
}

.benefit-card h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.benefit-card p {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.testimonials-flow {
    background-color: #34495e;
    color: #ffffff;
}

.testimonials-flow h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-block {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #bdc3c7;
    text-align: right;
}

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

.composition-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.composition-section p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.ingredients-list {
    list-style: none;
    margin-top: 1.5rem;
}

.ingredients-list li {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.ingredients-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.ingredients-list a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.products-reveal {
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.products-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    flex-wrap: wrap;
}

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

.product-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.product-details {
    flex: 1;
    min-width: 300px;
}

.product-details h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-details p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.6rem;
    color: #27ae60;
    font-weight: 700;
    margin: 1.5rem 0;
}

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    background-color: #ecf0f1;
}

.form-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

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

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

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    padding: 2rem;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #856404;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.references-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.references-list {
    list-style-position: inside;
}

.references-list li {
    margin-bottom: 0.75rem;
}

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

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-intro h2,
.services-intro h2,
.mission-section h3,
.team-approach h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-intro p,
.services-intro p,
.mission-section p,
.team-approach p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.about-intro,
.services-intro,
.team-approach {
    background-color: #f8f9fa;
}

.mission-section {
    background-color: #ffffff;
}

.values-section {
    background-color: #ecf0f1;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-card h4 {
    font-size: 1.4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #7f8c8d;
}

.services-list {
    background-color: #ffffff;
}

.service-block {
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

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

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

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    color: #27ae60;
    font-weight: 700;
    margin-top: 1.5rem;
}

.cta-services {
    background-color: #27ae60;
    color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #27ae60;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #27ae60;
    padding: 1rem 2.5rem;
    border: 2px solid #27ae60;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.contact-content {
    background-color: #f8f9fa;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional {
    background-color: #ffffff;
}

.contact-additional h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-additional p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.thanks-section {
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.thanks-content > p {
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .container-split {
        flex-direction: column;
    }

    .container-split.reverse {
        flex-direction: column;
    }

    .products-layout {
        gap: 2rem;
    }

    .product-item {
        flex-direction: column;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }
}