* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.ad-disclosure {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

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

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

.hero-visual {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #34495e;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.85), rgba(44, 62, 80, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.3;
}

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 700px;
}

.narrow-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.4;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #34495e;
}

.problem-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
    color: #34495e;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 28px;
    line-height: 1;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #34495e;
}

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

.citation:hover {
    color: #2980b9;
}

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

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.trust-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 17px;
    color: #34495e;
}

.testimonials-inline {
    background-color: #ffffff;
    padding: 80px 0;
}

.testimonials-inline h3 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 18px;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
}

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

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

.composition-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ingredient-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ingredient-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.ingredient-item p {
    font-size: 17px;
    color: #34495e;
}

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

.benefits-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-visual {
    display: flex;
    gap: 40px;
}

.benefit-item {
    flex: 1;
    text-align: center;
}

.benefit-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 17px;
    color: #34495e;
}

.services-pricing {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.services-pricing h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.services-pricing > .narrow-content > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #34495e;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.price {
    font-size: 34px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.select-service:active {
    transform: scale(0.98);
}

.order-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.order-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.order-section > .narrow-content > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #34495e;
}

.order-form {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 6px;
    font-size: 18px;
    color: #27ae60;
    font-weight: 600;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    transition: border-color 0.3s;
}

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

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    font-size: 19px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-submit:active {
    transform: scale(0.98);
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 60px 0;
}

.disclaimer-box {
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer-box h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e67e22;
}

.disclaimer-box p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

.footer-column 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: #3498db;
    text-decoration: none;
}

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 16px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

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

.page-hero .hero-image-wrapper {
    height: 500px;
}

.page-hero .hero-overlay h1 {
    font-size: 48px;
}

.about-story {
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.mission-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    font-size: 17px;
    color: #34495e;
}

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

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
    text-align: center;
}

.team-image-wrapper {
    background-color: #ecf0f1;
}

.team-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

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

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.commitment-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.services-intro p {
    font-size: 19px;
    text-align: center;
    color: #34495e;
}

.services-detailed {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.service-detail-content h4 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #34495e;
}

.price-display {
    font-size: 38px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.btn-order {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.usage-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.usage-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

.contact-block p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
}

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

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.map-placeholder {
    position: relative;
    background-color: #ecf0f1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.9);
    padding: 20px;
    color: #ffffff;
}

.map-overlay p {
    font-size: 18px;
    margin: 0;
}

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

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-additional p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #27ae60;
}

.thanks-icon {
    margin: 30px 0;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #34495e;
}

.order-details {
    background-color: #e8f5e9;
    padding: 25px;
    margin: 30px 0;
    border-radius: 6px;
}

.selected-product {
    font-size: 18px;
    color: #27ae60;
}

.thanks-info {
    font-size: 17px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

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

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.thanks-image {
    flex: 1;
    background-color: #ecf0f1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.next-steps {
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 40px;
}

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-card p {
    font-size: 17px;
    color: #34495e;
}

.legal-content {
    background-color: #ffffff;
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 19px;
    margin-bottom: 40px;
    color: #34495e;
    font-style: italic;
    background-color: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #3498db;
}

.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: #2c3e50;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #34495e;
    line-height: 1.7;
}

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

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

.legal-date {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
}

@media (max-width: 1024px) {
    .split-layout,
    .contact-layout,
    .benefits-visual,
    .trust-grid,
    .thanks-container,
    .steps-grid {
        flex-direction: column;
    }

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

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

    .nav-menu {
        display: none;
    }

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

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