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

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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fafbfc;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.intro-image {
    flex: 1;
    background-color: #f5f7fa;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reference:hover {
    color: #2980b9;
    text-decoration: underline;
}

.benefits-grid {
    background-color: #f9fafb;
    padding: 100px 40px;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-preview {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-preview.split {
    flex-direction: row;
}

.services-list {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-list h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a252f;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    white-space: nowrap;
    margin-left: 30px;
}

.services-image {
    flex: 1;
    background-color: #f5f7fa;
    overflow: hidden;
}

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

.link-secondary {
    display: inline-block;
    margin-top: 30px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-secondary:hover {
    color: #2980b9;
    text-decoration: underline;
}

.testimonials-split {
    display: flex;
    background-color: #f9fafb;
    padding: 100px 0;
}

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

.testimonial-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.testimonials-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.testimonial {
    margin-bottom: 40px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #5a6c7d;
    font-weight: 600;
}

.ingredients-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.ingredient-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #f9fafb;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.ingredient-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.ingredient-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-split {
    display: flex;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.cta-visual {
    flex: 1;
    background-color: #34495e;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
    text-align: center;
}

.form-container p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background-color: #f9fafb;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d8dd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 50px 40px;
    margin: 100px 0 0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #856404;
}

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

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1 1 250px;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

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

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.references-list a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-hero {
    background-color: #f9fafb;
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a252f;
}

.page-hero p {
    font-size: 18px;
    color: #5a6c7d;
}

.about-intro {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.about-intro.split {
    flex-direction: row;
}

.about-image {
    flex: 1;
    background-color: #f5f7fa;
    overflow: hidden;
}

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

.about-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.values-section {
    background-color: #f9fafb;
    padding: 100px 40px;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-section.split.reverse {
    flex-direction: row-reverse;
}

.team-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.team-image {
    flex: 1;
    background-color: #f5f7fa;
    overflow: hidden;
}

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

.approach-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.services-detail {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
}

.service-detail-card.split {
    flex-direction: row;
}

.service-detail-card.split.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f5f7fa;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

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

.duration {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 20px;
}

.cta-section {
    background-color: #f9fafb;
    padding: 80px 40px;
    margin: 100px 0;
}

.cta-section.centered {
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-section p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.contact-info-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info-section.split {
    flex-direction: row;
}

.contact-details {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.email-display {
    color: #2c3e50;
    font-weight: 500;
}

.contact-image {
    flex: 1;
    background-color: #f5f7fa;
    overflow: hidden;
}

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

.location-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.location-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.location-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.faq-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
}

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

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a252f;
}

.next-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step p {
    font-size: 16px;
    color: #5a6c7d;
}

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

.legal-page {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a252f;
}

.updated-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #f9fafb;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
}

.cookie-table td {
    padding: 15px;
    font-size: 15px;
    color: #5a6c7d;
    border-bottom: 1px solid #e9ecef;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-preview,
    .testimonials-split,
    .cta-split,
    .about-intro,
    .team-section,
    .service-detail-card,
    .contact-info-section {
        flex-direction: column;
    }

    .intro-split.reverse,
    .testimonials-split.reverse,
    .team-section.split.reverse,
    .service-detail-card.split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .services-list,
    .testimonials-content,
    .cta-content,
    .about-content,
    .team-content,
    .service-detail-content,
    .contact-details {
        padding: 40px;
    }

    .hero-image,
    .intro-image,
    .services-image,
    .testimonial-image,
    .cta-visual,
    .about-image,
    .team-image,
    .service-detail-image,
    .contact-image {
        min-height: 400px;
    }

    .benefits-container,
    .ingredients-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .benefit-card,
    .ingredient-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .next-steps {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

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

    .service-price {
        margin-left: 0;
        margin-top: 10px;
    }

    .contact-form {
        padding: 30px;
    }

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