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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 4rem;
}

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

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

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

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

.insight-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #95a5a6;
}

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

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

.problem-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.problem-content {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.problem-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.problem-card p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.trust-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
}

.trust-image {
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonials-content {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-content h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-item {
    padding: 2rem 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.15rem;
    color: #34495e;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #95a5a6;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1rem;
    color: #34495e;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 1.5rem;
}

.cta-button {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: scale(1.02);
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-intro {
    font-size: 1.05rem;
    text-align: center;
    color: #34495e;
    margin-bottom: 2.5rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

#contact-form input,
#contact-form select {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1.1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #229954;
    transform: scale(1.02);
}

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

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.7;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

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

.references-list {
    padding-left: 1.2rem;
}

.references-list li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    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: scale(1.05);
}

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

.btn-reject:hover {
    background-color: #5d6d7e;
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

.about-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.about-image-block {
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.philosophy-content {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.values-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.values-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.values-image {
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.commitment-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
}

.commitment-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.services-full {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-detail-image {
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.7;
}

.composition-block {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.composition-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.composition-block ul {
    padding-left: 1.5rem;
}

.composition-block li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.scientific-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 1rem 0;
    font-style: italic;
}

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

.order-button {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.order-button:hover {
    background-color: #2980b9;
    transform: scale(1.02);
}

.cta-section {
    padding: 4rem 2rem;
    background-color: #3498db;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-link-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-link-button:hover {
    background-color: #ecf0f1;
    transform: scale(1.05);
}

.contact-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.email-display {
    color: #34495e;
}

.contact-image-block {
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.additional-info-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.additional-info-content {
    max-width: 900px;
    margin: 0 auto;
}

.additional-info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
}

.additional-info-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container li {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #2980b9;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

#service-confirmation {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thanks-info {
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.back-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .insight-block {
        flex-direction: row;
        align-items: center;
    }

    .insight-img {
        max-width: 45%;
    }

    .insight-text {
        flex: 1;
    }

    .trust-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .trust-text {
        flex: 1;
    }

    .trust-image {
        flex: 1;
    }

    .about-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-text-block {
        flex: 1;
    }

    .about-image-block {
        flex: 1;
    }

    .values-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .values-text {
        flex: 1;
    }

    .values-image {
        flex: 1;
    }

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

    .service-detail-image {
        flex: 1;
    }

    .service-detail-content {
        flex: 1;
    }

    .contact-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info-block {
        flex: 1;
    }

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

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

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 1.1rem;
    }
}