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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.btn-accept {
    background-color: #2d7a3e;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #236630;
}

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a3e;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    border: 1px solid #e0e0e0;
}

.hero-section {
    width: 100%;
    margin: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

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

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

.story-intro {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.insight-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.split-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

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

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

.problem-amplification {
    padding: 0;
}

.full-width-dark {
    background-color: #1a2332;
    padding: 90px 20px;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.centered-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 30px;
}

.centered-content p {
    font-size: 19px;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.how-it-works {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.tech-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tech-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.tech-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin: 25px 30px 15px;
}

.tech-card p {
    font-size: 16px;
    color: #555;
    margin: 0 30px 30px;
    line-height: 1.7;
}

.testimonials-section {
    padding: 90px 20px;
    background-color: #2d7a3e;
}

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

.testimonials-container h2 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial {
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid #ffffff;
}

.testimonial p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #d0f0d8;
    font-style: italic;
    font-size: 16px;
}

.benefits-reveal {
    padding: 100px 20px;
    background-color: #ffffff;
}

.benefits-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

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

.services-preview {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

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

.services-intro h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 18px;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    position: relative;
}

.service-card.featured {
    border: 3px solid #2d7a3e;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

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

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a3e;
    margin-top: 25px;
}

.consultation-form {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.trust-indicators {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.scientific-references {
    padding: 60px 20px;
    background-color: #e8f4ea;
}

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

.references-content h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.references-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

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

.references-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.references-list a {
    color: #2d7a3e;
    text-decoration: underline;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 20px 20px;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #252525;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
}

.page-hero {
    background: linear-gradient(135deg, #2d7a3e 0%, #1e5229 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 46px;
    margin-bottom: 15px;
}

.page-hero p {
    color: #d0f0d8;
    font-size: 20px;
}

.about-content {
    padding: 80px 20px;
}

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

.about-intro {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.about-intro img {
    width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

.mission-section {
    margin-bottom: 60px;
}

.mission-section h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.mission-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.team-approach {
    margin-bottom: 60px;
}

.team-approach h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.team-approach p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

.commitment-section {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.commitment-section img {
    width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.commitment-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 20px;
}

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

.service-detail-card {
    margin-bottom: 70px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-detail-card.featured-service {
    border: 3px solid #2d7a3e;
}

.service-image {
    background-color: #e0e0e0;
}

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

.service-info {
    padding: 40px;
    position: relative;
}

.popular-label {
    display: inline-block;
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-info h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.service-tagline {
    font-size: 18px;
    color: #2d7a3e;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-info h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.detailed-list {
    list-style: none;
    margin: 20px 0;
}

.detailed-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.detailed-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a3e;
    margin: 30px 0 20px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #236630;
}

.additional-services {
    max-width: 1100px;
    margin: 60px auto 0;
}

.additional-services h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.addon-services {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.addon-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.addon-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.addon-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.addon-price {
    font-size: 22px;
    font-weight: 700;
    color: #2d7a3e;
}

.financing-info {
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.financing-info h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.financing-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    color: #2d7a3e;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

.contact-image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.response-time {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.response-time h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.response-time p {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.additional-contact-info {
    max-width: 1100px;
    margin: 60px auto 0;
}

.additional-contact-info h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.additional-contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.preparation-list {
    list-style: disc;
    padding-left: 30px;
    margin: 20px 0;
}

.preparation-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background-color: #2d7a3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.service-selected {
    background-color: #e8f4ea;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-selected h3 {
    font-size: 20px;
    color: #2d7a3e;
    margin-bottom: 10px;
}

.service-selected p {
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 600;
}

.meanwhile-section {
    margin-bottom: 40px;
}

.meanwhile-section h2 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.meanwhile-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-link {
    display: block;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.resource-link:hover {
    background-color: #e8f4ea;
}

.contact-reminder {
    margin-bottom: 30px;
}

.contact-reminder p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.contact-email {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.operating-hours {
    font-size: 14px;
    color: #888;
}

.return-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.return-home:hover {
    background-color: #236630;
}

.legal-page {
    padding: 60px 20px;
}

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

.legal-container h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.legal-section h3 {
    font-size: 22px;
    color: #2d7a3e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    list-style: disc;
    padding-left: 30px;
    margin: 15px 0;
}

.legal-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.legal-section a {
    color: #2d7a3e;
    text-decoration: underline;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 15px;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

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

    .services-grid {
        flex-direction: column;
    }

    .about-intro {
        flex-direction: column;
    }

    .about-intro img {
        width: 100%;
    }

    .commitment-section {
        flex-direction: column;
    }

    .commitment-section img {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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