* {
    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;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.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.5rem;
    font-weight: bold;
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 4px;
}

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

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

.nav-links a:hover {
    color: #2c5f2d;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.7), rgba(44, 62, 80, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.5rem;
    color: #ecf0f1;
    max-width: 700px;
}

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

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
    text-align: center;
}

.story-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

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

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    color: #c0392b;
    margin-bottom: 1.5rem;
}

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

.split-text a {
    color: #2c5f2d;
    font-weight: 600;
}

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

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

.insight-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5f2d, #27ae60);
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.insight-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.insight-card h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin: 1.5rem;
}

.insight-card p {
    padding: 0 1.5rem 1.5rem;
    color: #34495e;
}

.insight-card a {
    color: #27ae60;
    font-weight: 600;
}

.trust-building {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

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

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #34495e;
    font-size: 1.1rem;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #2c3e50;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-container h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    color: #ecf0f1;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #27ae60;
    font-weight: 600;
}

.services-reveal {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 2.8rem;
    color: #2c5f2d;
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-card p {
    padding: 0 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    color: #27ae60;
    font-weight: bold;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.btn-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #229954;
}

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #dcdcdc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
}

.scientific-references {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.references-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

.references-list a {
    color: #27ae60;
    text-decoration: none;
}

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

.disclaimer-section {
    padding: 2rem;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.disclaimer-text {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-section h4 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.about-hero {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5f2d, #27ae60);
    text-align: center;
}

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

.about-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.about-story {
    padding: 4rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-block {
    margin-bottom: 3rem;
}

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

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

.about-image-block {
    margin: 3rem 0;
    background-color: #ecf0f1;
}

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

.about-values {
    margin: 4rem 0;
}

.about-values h2 {
    font-size: 2.3rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.value-item p {
    color: #34495e;
}

.about-process {
    margin: 4rem 0;
}

.about-process h2 {
    font-size: 2.3rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-process > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.process-step h4 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #34495e;
    font-size: 0.95rem;
}

.services-header {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #27ae60, #2c5f2d);
    text-align: center;
}

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

.services-header-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.services-list {
    padding: 4rem 2rem;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

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

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

.service-detail-price {
    font-size: 2.2rem;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    padding-left: 0;
}

.service-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #34495e;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.services-cta {
    padding: 4rem 2rem;
    background: #2c5f2d;
    text-align: center;
}

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

.services-cta-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

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

.btn-primary:hover {
    background: #229954;
}

.contact-header {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    text-align: center;
}

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

.contact-header-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.contact-info {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

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

.email-text {
    color: #34495e;
    font-weight: 600;
}

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

.map-placeholder {
    background: #ecf0f1;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: #7f8c8d;
}

.contact-additional {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.additional-info h2 {
    font-size: 2.3rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
    text-align: center;
}

.info-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.info-item p {
    color: #34495e;
}

.thanks-section {
    margin-top: 70px;
    padding: 5rem 2rem;
    text-align: center;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

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

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

.thanks-container p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

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

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

.btn-secondary:hover {
    background: #2c5f2d;
    color: white;
}

.next-steps {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-container h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-timeline {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.legal-content {
    margin-top: 70px;
    padding: 4rem 2rem;
}

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

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

.legal-date {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    color: #2c5f2d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    color: #34495e;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: #2c5f2d;
    color: white;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #dcdcdc;
}

.cookie-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .split-layout,
    .service-detail {
        flex-direction: column;
    }

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .insight-grid,
    .service-cards,
    .testimonial-flow {
        flex-direction: column;
        align-items: center;
    }

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

    .steps-timeline {
        flex-direction: column;
        align-items: center;
    }
}