/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    padding: 1rem 5%;
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5f2d;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary:hover {
    background: #1e4620;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    align-items: stretch;
}

.hero-content {
    padding: 60px 5%;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    min-height: 300px;
    overflow: hidden;
}

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

/* Split Container */
.split-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.split-content,
.split-image {
    flex: 1;
    padding: 40px 5%;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e4620;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
}

.split-image {
    padding: 0;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* Problem Section */
.problem-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.check-list {
    margin: 25px 0;
}

.check-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

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

/* Insight Section */
.insight-section {
    padding: 70px 0;
    background: #fff;
}

.insight-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e4620;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-card {
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
}

.insight-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
}

/* Services Section */
.services-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 5%;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1e4620;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
}

.services-split-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 5%;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
}

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

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2c5f2d;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1e4620;
}

.service-card > p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 20px;
}

.service-details ul {
    margin: 20px 0;
}

.service-details li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c5f2d;
    font-size: 1.5rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c5f2d;
}

.price-period {
    font-size: 0.95rem;
    color: #777;
    margin-top: 5px;
}

.select-service {
    width: 100%;
    margin-top: 15px;
}

.service-card.wide {
    flex: 1;
}

/* Testimonials */
.testimonials-section {
    padding: 70px 0;
    background: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e4620;
}

.testimonials-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 5%;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid #2c5f2d;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1e4620;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #777;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1e4620;
}

.step-content p {
    color: #555;
    font-size: 1.05rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 70px 0;
    background: #fff;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e4620;
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 5%;
}

.guarantee-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.guarantee-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.guarantee-item p {
    color: #555;
    font-size: 1.05rem;
}

/* Form Section */
.form-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
}

.form-container-split {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 40px;
}

.form-side-content {
    color: #fff;
}

.form-side-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-side-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-benefit svg {
    color: #4CAF50;
}

.form-benefit span {
    font-size: 1.05rem;
}

.form-side {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-privacy {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.form-privacy a {
    color: #2c5f2d;
    text-decoration: underline;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e4620;
    color: #fff;
    padding: 15px 5%;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-content span {
    font-size: 1rem;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 70, 32, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: #1e4620;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* About Page */
.about-story {
    padding: 70px 0;
    background: #fff;
}

.values-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e4620;
}

.values-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 5%;
}

.value-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

/* Team Section */
.team-section {
    padding: 70px 0;
    background: #fff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1e4620;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    color: #555;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 5%;
}

.team-member {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #1e4620;
}

.team-member p {
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member span {
    font-size: 0.95rem;
    color: #777;
}

/* Numbers Section */
.numbers-section {
    padding: 70px 0;
    background: #2c5f2d;
    color: #fff;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 0 5%;
}

.number-item {
    text-align: center;
}

.big-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.number-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Coverage Section */
.coverage-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.coverage-list {
    margin-top: 30px;
}

.coverage-list h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1e4620;
}

/* Certificates Section */
.certificates-section {
    padding: 70px 0;
    background: #fff;
}

.certificates-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1e4620;
}

.certificates-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    color: #555;
}

.certificates-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 5%;
}

.certificate-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.certificate-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.certificate-item p {
    color: #555;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Services Detailed Page */
.services-detailed {
    padding: 50px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

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

.service-detail-content {
    padding: 40px 5%;
}

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

.service-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #2c5f2d;
}

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

.detailed-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

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

.service-duration {
    margin: 25px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.service-duration strong {
    color: #1e4620;
}

.service-detail-price {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 1rem;
    color: #777;
    margin-bottom: 8px;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.95rem;
    color: #777;
}

.service-detail-image {
    min-height: 300px;
    overflow: hidden;
}

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

.service-detail-card.highlight {
    background: #f8f9fa;
    padding: 20px 0;
}

.service-detail-card.emergency {
    background: #fff3cd;
    padding: 20px 0;
}

.popular-badge,
.emergency-badge {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.emergency-badge {
    background: #dc3545;
}

/* Comparison Table */
.comparison-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e4620;
}

.comparison-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-header,
.comparison-row {
    display: flex;
    flex-direction: column;
}

.comparison-header {
    background: #2c5f2d;
    color: #fff;
}

.comparison-cell {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.comparison-header .comparison-cell {
    font-weight: 700;
    border-bottom: none;
}

.highlight-col {
    background: #f0f8f0;
}

/* FAQ Section */
.faq-section {
    padding: 70px 0;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e4620;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 5%;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.faq-item p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Contact Page */
.contact-main {
    padding: 50px 0;
}

.contact-split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 5%;
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e4620;
}

.contact-info-side > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.contact-item a {
    color: #2c5f2d;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 8px;
}

.contact-list {
    margin-top: 15px;
}

.contact-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

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

.contact-map-side h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e4620;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 300px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 70, 32, 0.9);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.contact-cta-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.contact-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e4620;
}

.contact-cta-box p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

/* Additional Info Section */
.contact-additional {
    padding: 70px 0;
    background: #fff;
}

.contact-additional h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e4620;
}

.additional-info-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 5%;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.info-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.info-card strong {
    color: #1e4620;
}

.info-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 8px;
}

/* FAQ Contact Section */
.faq-contact-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.faq-contact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e4620;
}

.faq-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 5%;
}

.faq-contact-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.faq-contact-item p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
    text-align: center;
    color: #fff;
}

.final-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    background: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e4620;
}

.thanks-message {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

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

.thanks-step .step-icon {
    background: #2c5f2d;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-step p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.thanks-contact {
    margin: 30px 0;
    font-size: 1.05rem;
    color: #555;
}

.thanks-contact a {
    color: #2c5f2d;
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.thanks-emergency {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.emergency-note {
    font-size: 0.95rem;
    color: #856404;
}

/* Legal Pages */
.legal-page {
    padding: 50px 0;
    background: #fff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e4620;
}

.legal-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #2c5f2d;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #2c5f2d;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin: 25px 0 12px;
    color: #1e4620;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    list-style: disc;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-date {
    margin-top: 50px;
    font-weight: 600;
    color: #2c5f2d;
    font-size: 1.05rem;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        gap: 30px;
    }

    .nav-menu li {
        padding: 0;
        border: none;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-content,
    .hero-image {
        width: 50%;
    }

    .split-container {
        flex-direction: row;
    }

    .split-container.reverse {
        flex-direction: row-reverse;
    }

    .insight-grid {
        flex-direction: row;
    }

    .services-split-layout {
        flex-direction: row;
    }

    .services-secondary,
    .services-special {
        flex-direction: row;
    }

    .testimonials-split {
        flex-direction: row;
    }

    .guarantee-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item {
        flex: 0 0 calc(50% - 15px);
    }

    .form-container-split {
        flex-direction: row;
    }

    .form-side-content,
    .form-side {
        flex: 1;
    }

    .sticky-content {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .values-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-item {
        flex: 0 0 calc(50% - 20px);
    }

    .certificates-grid {
        flex-direction: row;
    }

    .service-detail-split {
        flex-direction: row;
        align-items: center;
    }

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

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

    .comparison-header,
    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
        border-right: 1px solid #e0e0e0;
    }

    .comparison-cell:last-child {
        border-right: none;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 0 0 calc(50% - 15px);
    }

    .contact-split-layout {
        flex-direction: row;
    }

    .contact-info-side,
    .contact-map-side {
        flex: 1;
    }

    .additional-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 0 0 calc(50% - 15px);
    }

    .faq-contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-contact-item {
        flex: 0 0 calc(50% - 15px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .insight-grid {
        flex-wrap: nowrap;
    }

    .services-split-layout {
        flex-wrap: nowrap;
    }

    .guarantee-grid {
        flex-wrap: nowrap;
    }

    .guarantee-item {
        flex: 1;
    }

    .values-split {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .numbers-grid {
        flex-wrap: nowrap;
    }

    .number-item {
        flex: 1;
    }

    .certificates-grid {
        flex-wrap: nowrap;
    }

    .faq-grid {
        flex-wrap: nowrap;
    }

    .faq-item {
        flex: 1;
    }

    .additional-info-grid {
        flex-wrap: nowrap;
    }

    .info-card {
        flex: 1;
    }

    .faq-contact-grid {
        flex-wrap: nowrap;
    }

    .faq-contact-item {
        flex: 1;
    }
}
