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

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

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

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

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

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

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

.nav-disclaimer {
    font-size: 11px;
    color: #666;
    font-style: italic;
    padding: 4px 8px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
}

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-card {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.intro-card h2 {
    font-size: 36px;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.problem-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e9ecef;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.insight-section {
    padding: 80px 20px;
    background-color: #2d6a4f;
    color: #ffffff;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.insight-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.insight-section a.reference {
    color: #95d5b2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.insight-section a.reference:hover {
    color: #d8f3dc;
}

.trust-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    border-left: 4px solid #2d6a4f;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: #2d6a4f;
    font-weight: 600;
    font-style: normal;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.benefits-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d6a4f;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.benefit-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.benefit-card h3 {
    font-size: 22px;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.services-preview-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-preview-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #2d6a4f;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 22px;
    color: #2d6a4f;
}

.service-card p {
    padding: 0 25px 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    flex-grow: 1;
}

.price-tag {
    padding: 0 25px 15px;
    font-size: 28px;
    font-weight: 700;
    color: #2d6a4f;
}

.service-btn {
    margin: 0 25px 25px;
    padding: 12px 24px;
    background-color: #2d6a4f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    color: #2d6a4f;
    margin-bottom: 15px;
    text-align: center;
}

.form-card p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.contact-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: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 14px 32px;
    background-color: #2d6a4f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff3cd;
}

.disclaimer-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.disclaimer-box h3 {
    font-size: 24px;
    color: #856404;
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

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

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d6a4f;
}

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

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #95d5b2;
}

.references-list {
    list-style: none;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
}

.reference-link {
    color: #95d5b2;
    text-decoration: none;
    font-weight: 600;
    margin-right: 8px;
}

.reference-link:hover {
    color: #d8f3dc;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.email-text {
    font-family: monospace;
    color: #666;
}

.page-header {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #ffffff;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    font-weight: 300;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
    object-fit: cover;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 32px;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d6a4f;
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.approach-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.approach-card h3 {
    font-size: 22px;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.expertise-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.expertise-section h2 {
    font-size: 32px;
    color: #2d6a4f;
    margin-bottom: 25px;
}

.expertise-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 360px;
}

.value-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e9ecef;
}

.value-card h3 {
    padding: 25px 25px 10px;
    font-size: 24px;
    color: #2d6a4f;
}

.value-card p {
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.service-detail-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
    object-fit: cover;
}

.service-detail-text {
    flex: 1;
    min-width: 300px;
}

.service-detail-text h2 {
    font-size: 32px;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

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

.service-select-btn {
    padding: 12px 24px;
    background-color: #2d6a4f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select-btn:hover {
    background-color: #1b4332;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-info-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.contact-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e9ecef;
}

.contact-details {
    padding: 40px;
}

.contact-details h2 {
    font-size: 32px;
    color: #2d6a4f;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #2d6a4f;
    margin-bottom: 8px;
}

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

.visit-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.visit-section h2 {
    font-size: 28px;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.visit-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.visit-section a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.visit-section a:hover {
    color: #1b4332;
}

.directions-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.direction-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.direction-card h3 {
    font-size: 22px;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.direction-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.thanks-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.thanks-card {
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    color: #2d6a4f;
    margin-bottom: 20px;
}

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

.service-confirmation {
    background-color: #d8f3dc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1b4332;
}

.thanks-info {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

.next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.next-steps h2 {
    font-size: 24px;
    color: #2d6a4f;
    margin-bottom: 15px;
}

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

.steps-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

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

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #2d6a4f;
    border: 2px solid #2d6a4f;
}

.btn-secondary:hover {
    background-color: #2d6a4f;
    color: white;
}

.additional-info-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.additional-info-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #2d6a4f;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.info-card-small {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.info-card-small h3 {
    font-size: 20px;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.info-card-small p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.info-card-small a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card-small a:hover {
    color: #1b4332;
}

.legal-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 28px;
    color: #2d6a4f;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d6a4f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #1b4332;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .intro-card {
        padding: 30px;
    }

    .intro-card h2 {
        font-size: 28px;
    }

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

    .service-detail-content,
    .service-detail-content.reverse {
        flex-direction: column;
        padding: 25px;
    }

    .form-card {
        padding: 30px;
    }

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