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

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.split-left,
.split-right {
    flex: 1 1 450px;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8f4ea;
}

.header {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    background-color: #fff3cd;
    border-radius: 3px;
    border: 1px solid #ffc107;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 30px;
}

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

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

.hero-section {
    position: relative;
    background-color: #1a2a1a;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #2c5f2d;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 95, 45, 0.7), rgba(26, 42, 26, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #e8f4ea;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f2d;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-highlight {
    padding: 80px 0;
    background-color: #f4f6f5;
}

.services-grid-alt {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-featured {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.service-image-wrap {
    flex: 1 1 400px;
    min-height: 300px;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #d4e9d6;
}

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

.service-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 20px 0;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.value-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.value-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.value-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.additional-services {
    padding: 80px 0;
    background-color: #2c5f2d;
}

.additional-services h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

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

.compact-service {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 350px;
}

.compact-service h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.compact-service p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

.price-small {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 15px 0;
}

.btn-select-service-compact {
    width: 100%;
    padding: 12px 20px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f2d;
    text-align: center;
}

.testimonial-block {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #2c5f2d;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #2c5f2d;
    font-weight: 600;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff9e6;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
    font-style: italic;
}

.footer {
    background-color: #1a2a1a;
    color: #ffffff;
    padding: 50px 0 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e8f4ea;
}

.footer-col p {
    font-size: 14px;
    color: #b8c9b8;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #b8c9b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e8f4ea;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    margin: 0;
}

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

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

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

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4520 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: #e8f4ea;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-story h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.about-story p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.about-image-section {
    padding: 0;
    background-color: #f4f6f5;
}

.about-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #d4e9d6;
}

.mission-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.mission-text {
    flex: 1 1 450px;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.mission-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.mission-stats {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #555;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f2d;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

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

.team-section {
    padding: 80px 0;
    background-color: #f4f6f5;
}

.centered-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #d4e9d6;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c5f2d;
}

.team-member p {
    font-size: 15px;
    color: #555;
}

.cta-section-alt {
    padding: 80px 0;
    background-color: #2c5f2d;
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section-alt p {
    font-size: 18px;
    color: #e8f4ea;
    margin-bottom: 30px;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #e8f4ea;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

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

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

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

.service-list li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-detail-image {
    flex: 1 1 350px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d4e9d6;
}

.service-pricing {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.price-large {
    font-size: 38px;
    font-weight: 700;
    color: #2c5f2d;
}

.process-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

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

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

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

.process-step h3 {
    flex: 1 1 0;
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c5f2d;
    margin-top: 5px;
}

.process-step p {
    flex: 1 1 100%;
    margin-left: 85px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

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

.contact-details {
    flex: 1 1 400px;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f2d;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

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

.email-display {
    font-weight: 600;
    color: #2c5f2d;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.contact-note p {
    font-size: 14px;
    color: #5a5a5a;
    font-style: italic;
}

.contact-map {
    flex: 1 1 400px;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #d4e9d6;
}

.faq-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f2d;
}

.faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f9fafb;
    text-align: center;
}

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

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

.thanks-section h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.selected-service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.selected-service-info p {
    font-size: 18px;
    color: #2c5f2d;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.legal-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-section h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.updated-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section h2 {
    font-size: 28px;
    margin: 35px 0 15px 0;
    color: #2c5f2d;
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 12px 0;
    color: #34495e;
}

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

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

.legal-section ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.legal-section a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1f4520;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f4f6f5;
    font-weight: 600;
    color: #2c5f2d;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

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

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

    .mission-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .process-step p {
        margin-left: 0;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}