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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97c680;
    --accent-color: #ff6b35;
    --text-dark: #2d2d2d;
    --text-light: #6b6b6b;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-minimal {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-minimal .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-floating {
    display: flex;
    gap: 32px;
}

.nav-floating a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-floating a:hover {
    color: var(--primary-color);
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #e8f5e9;
}

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

.hero-content-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--bg-white);
    background: rgba(44, 95, 45, 0.85);
    padding: 48px 64px;
    border-radius: 12px;
    max-width: 700px;
}

.hero-content-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content-overlay p {
    font-size: 18px;
    line-height: 1.6;
}

.story-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.story-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.story-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.story-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.problem-cards {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.section-title-center {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--text-dark);
    text-align: center;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.info-card {
    flex: 1 1 calc(50% - 12px);
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.insight-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.insight-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.insight-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.citation {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.citation:hover {
    opacity: 0.8;
}

.testimonial-cards {
    padding: 80px 0;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
}

.testimonial-card {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-card {
    display: flex;
    gap: 40px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    align-items: center;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-card img {
    width: 45%;
    height: 320px;
    object-fit: cover;
}

.benefit-content {
    flex: 1;
    padding: 40px;
}

.benefit-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-preview {
    padding: 80px 0;
}

.service-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    gap: 32px;
}

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

.service-image {
    width: 45%;
    min-height: 320px;
}

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

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

.service-card-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.composition {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.composition strong {
    color: var(--primary-color);
}

.select-service-btn {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #1f4520;
    transform: translateY(-2px);
}

.select-service-btn:active {
    transform: translateY(0);
}

.pricing-reveal {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.pricing-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.selected-service-info {
    margin: 24px 0;
}

.selected-service-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.selected-service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.form-section {
    padding: 60px 0;
}

.form-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.submit-btn:active {
    transform: translateY(0);
}

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

.disclaimer-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.disclaimer-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    text-decoration: none;
    color: #b0b0b0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.references {
    list-style: none;
    font-size: 13px;
}

.references li {
    margin-bottom: 8px;
}

.references a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.references a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a4a4a;
}

.footer-bottom p {
    font-size: 14px;
    color: #8a8a8a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background-color: #1f4520;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background-color: #d0d0d0;
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

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

.about-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

.about-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.about-text {
    padding: 48px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.value-card {
    flex: 1 1 calc(50% - 12px);
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 80px 0;
}

.team-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.team-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.commitment-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.commitment-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.commitment-content img {
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    background-color: #fff3e0;
}

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.commitment-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.services-full {
    padding: 80px 0;
}

.service-card-detailed {
    display: flex;
    gap: 40px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 40px;
}

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

.service-card-detailed .service-image {
    width: 40%;
    min-height: 400px;
}

.service-details {
    flex: 1;
    padding: 48px;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.composition-detailed {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.composition-detailed h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.composition-detailed ul {
    list-style: none;
    padding: 0;
}

.composition-detailed li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.composition-detailed li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.application {
    margin-top: 24px;
}

.application h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.application p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #1f4520;
    transform: translateY(-2px);
}

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

.contact-grid {
    display: flex;
    gap: 32px;
}

.contact-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.email-display {
    font-family: monospace;
    background: var(--bg-light);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.email-note {
    font-size: 14px;
    margin-top: 8px;
}

.map-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.map-placeholder {
    background: var(--bg-white);
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-info-section {
    padding: 60px 0;
}

.info-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-box h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    text-decoration: underline;
}

.thanks-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-color);
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--bg-white);
    opacity: 0.95;
}

.thanks-details {
    padding: 80px 0;
}

.thanks-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.thanks-card h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-cta {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}

.cta-box {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-box h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

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

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-content-overlay {
        padding: 32px;
        bottom: 40px;
    }

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

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

    .nav-floating {
        gap: 16px;
        font-size: 14px;
    }

    .cards-grid,
    .values-grid {
        flex-direction: column;
    }

    .info-card,
    .value-card {
        flex: 1 1 100%;
    }

    .testimonials-grid,
    .contact-grid {
        flex-direction: column;
    }

    .benefit-card,
    .benefit-card:nth-child(even),
    .service-card,
    .service-card:nth-child(even),
    .service-card-detailed,
    .service-card-detailed:nth-child(even) {
        flex-direction: column;
    }

    .benefit-card img,
    .service-image,
    .service-card-detailed .service-image {
        width: 100%;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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