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

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

.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.8rem;
    font-weight: 700;
    color: #2d6a4f;
}

.nav-ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

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

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

.nav-menu a:hover {
    color: #2d6a4f;
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

.hero-image-container 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(45, 106, 79, 0.85) 0%, rgba(52, 152, 219, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

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

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

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

.story-narrow {
    max-width: 750px;
    margin: 0 auto;
}

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

.story-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.citation {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-visual {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.7;
}

.insight-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.problem-section {
    padding: 5rem 2rem;
    background-color: #fef5e7;
}

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

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

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

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.problem-card h3 {
    font-size: 1.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.solution-visual {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.solution-image {
    flex: 1;
    background-color: #d1f2eb;
}

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

.solution-content {
    flex: 1;
}

.solution-content h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.solution-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #34495e;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    font-size: 1.05rem;
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #2c3e50;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-button {
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.ingredients-section {
    padding: 5rem 2rem;
    background-color: #e8f5e9;
}

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

.ingredients-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.ingredients-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.ingredient-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.ingredient-item h3 {
    font-size: 1.4rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.ingredient-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.testimonial-item {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #2d6a4f;
}

.testimonial-item p {
    font-size: 1.05rem;
    color: #34495e;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #2d6a4f;
    font-weight: 600;
}

.products-reveal {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.products-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.product-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
}

.product-card p {
    font-size: 1rem;
    color: #34495e;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.6rem;
    color: #2d6a4f;
    font-weight: 700;
    margin: 1rem 1.5rem;
}

.product-select {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-select:hover {
    background-color: #1e4d36;
}

.order-form-section {
    padding: 5rem 2rem;
    background-color: #e8f5e9;
}

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

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
}

.submit-button {
    width: 100%;
    padding: 1.1rem;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1e4d36;
}

.trust-badges {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.badges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 1.5rem;
}

.badge-item h4 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.badge-item p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.5;
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #52796f 100%);
    text-align: center;
}

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

.final-cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    background-color: #ffffff;
    color: #2d6a4f;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
}

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

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

.disclaimer-container p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.references-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

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

.references-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references-list li {
    font-size: 0.95rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.references-list a {
    color: #2d6a4f;
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    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-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #2d6a4f;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #52796f 100%);
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    color: #ffffff;
}

.services-page-content {
    padding: 4rem 2rem;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.15rem;
    color: #34495e;
    line-height: 1.7;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

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

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

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

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

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

.service-price-tag {
    font-size: 1.8rem;
    color: #2d6a4f;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.service-detail-content ul li {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-order-btn {
    padding: 1rem 2rem;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.service-order-btn:hover {
    background-color: #1e4d36;
}

.services-guarantee {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 3rem;
    background-color: #e8f5e9;
    border-radius: 10px;
}

.services-guarantee h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.guarantee-item h4 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.guarantee-item p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.6;
}

.about-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.about-hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.about-hero-text p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.about-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 106, 79, 0.6);
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.story-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-values {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

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

.value-card p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.about-process {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.process-list {
    padding-left: 1.5rem;
}

.process-list li {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.process-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.about-team {
    padding: 5rem 2rem;
    background-color: #e8f5e9;
}

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

.team-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.team-image {
    background-color: #d1f2eb;
}

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

.about-certifications {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.certifications-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.certifications-container p {
    font-size: 1.15rem;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
}

.certifications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

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

.cert-item h4 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.cert-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.about-commitment {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.commitment-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.commitment-container p {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 2rem;
}

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

.commitment-list li {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.7;
}

.commitment-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-size: 1.5rem;
}

.about-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #52796f 100%);
    text-align: center;
}

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

.about-cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.about-cta-content .cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2d6a4f;
    text-decoration: none;
}

.contact-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #52796f 100%);
    text-align: center;
}

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

.contact-hero-content p {
    font-size: 1.3rem;
    color: #ffffff;
}

.contact-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info-section > p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-detail-item {
    margin-bottom: 2rem;
}

.contact-detail-item h3 {
    font-size: 1.4rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.contact-detail-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-note-box {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.contact-note-box h4 {
    font-size: 1.2rem;
    color: #856404;
    margin-bottom: 0.8rem;
}

.contact-note-box p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
}

.contact-image-section {
    flex: 1;
    background-color: #e0e0e0;
}

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

.contact-faq {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.contact-map-info {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.map-info-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.map-info-container h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.map-info-container p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.map-placeholder {
    background-color: #e8f5e9;
    padding: 4rem 2rem;
    border-radius: 10px;
    border: 2px dashed #2d6a4f;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #2d6a4f;
    font-weight: 600;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2d6a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.thanks-product-info {
    background-color: #e8f5e9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-product-info h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-name-thanks {
    font-size: 1.3rem;
    color: #2d6a4f;
    font-weight: 600;
}

.thanks-info-box {
    background-color: #fff3cd;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info-box h3 {
    font-size: 1.3rem;
    color: #856404;
    margin-bottom: 1rem;
}

.thanks-info-box ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info-box ul li {
    font-size: 1rem;
    color: #856404;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-info-box ul li::before {
    content: "ℹ";
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

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

.btn-primary {
    background-color: #2d6a4f;
    color: #ffffff;
}

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

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

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

.thanks-recommendations {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.recommendations-container h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

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

.recommendation-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.recommendation-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.recommendation-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 1.5rem 1rem 0.8rem;
}

.recommendation-card p {
    font-size: 1.3rem;
    color: #2d6a4f;
    font-weight: 700;
    margin: 0.8rem 1rem 1.5rem;
}

.btn-recommendation {
    display: inline-block;
    margin: 0 1rem 1.5rem;
    padding: 0.7rem 1.5rem;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-recommendation:hover {
    background-color: #1e4d36;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

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

.legal-container h2 {
    font-size: 2rem;
    color: #2d6a4f;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-container li {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #2d6a4f;
    text-decoration: none;
}

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

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

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .insight-grid,
    .solution-split,
    .process-container,
    .contact-container {
        flex-direction: column;
    }

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

    .about-hero-text h1 {
        font-size: 2.5rem;
    }

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