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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #28a745;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

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

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

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

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

.hero-image {
    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.8) 0%, rgba(44, 95, 45, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

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

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
}

.narrow-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) 2rem;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg) 2rem;
}

.story-intro {
    background-color: var(--light-bg);
}

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.insight-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid var(--accent-color);
}

.insight-block img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.insight-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
}

.insight-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.insight-text a:hover {
    text-decoration: underline;
}

.problem-amplification {
    background-color: #ffffff;
}

.two-column-offset {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.column-text {
    flex: 1.2;
}

.column-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.column-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.column-visual {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 1rem;
    line-height: 1.4;
}

.solution-reveal {
    background-color: var(--light-bg);
}

.solution-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.solution-reveal > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: var(--border-color);
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.trust-building {
    background-color: #ffffff;
    padding: var(--spacing-lg) 0;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-block {
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-block cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.services-preview {
    background-color: var(--light-bg);
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 1rem 1.5rem;
}

.cta-select {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

.cta-select:hover {
    background-color: #1e4620;
}

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

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.form-disclaimer {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.form-disclaimer a {
    color: var(--accent-color);
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

.ingredients-section {
    background-color: var(--light-bg);
}

.ingredients-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.ingredients-list {
    list-style: none;
    margin: 2rem 0;
}

.ingredients-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
}

.ingredients-list li strong {
    color: var(--primary-color);
}

.ingredient-note {
    font-size: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid var(--accent-color);
}

.ingredient-note a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.ingredient-note a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: var(--spacing-lg) 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

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

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 3rem auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer-references {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.footer-references ol li a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: var(--accent-color);
    color: #ffffff;
}

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

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

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

.page-header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

.about-story img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    background-color: var(--border-color);
}

.about-story h2,
.about-story h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-story h2 {
    font-size: 2rem;
}

.about-story h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-block {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.value-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value-block p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.mission-section {
    background-color: var(--light-bg);
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.content-visual {
    flex: 1;
}

.content-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--border-color);
}

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

.team-approach h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-approach p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.team-approach img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 2rem;
    background-color: var(--border-color);
}

.services-detailed {
    padding: var(--spacing-lg) 0;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--border-color);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.featured-price {
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-info h4 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-info ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

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

.service-benefits {
    background-color: var(--light-bg);
}

.service-benefits h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-benefits p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-point {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.benefit-point h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.benefit-point p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.contact-section {
    padding: var(--spacing-lg) 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--border-color);
}

.location-info {
    background-color: var(--light-bg);
}

.location-info h2,
.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.location-info h2 {
    font-size: 2rem;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.location-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.location-info ul {
    padding-left: 1.5rem;
}

.location-info ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.next-steps {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-steps ul {
    padding-left: 1.5rem;
}

.next-steps ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e4620;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--light-bg);
}

.legal-page {
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

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

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
}

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

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

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

    .two-column-offset,
    .split-content,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}