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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --primary-light: #4a8f4c;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

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

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

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.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;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

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

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-asymmetric {
    padding: 100px 20px;
}

.intro-left {
    flex: 1;
    min-width: 300px;
}

.intro-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.intro-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

.intro-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-medium);
}

.services-preview {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-center h2 {
    font-size: 42px;
    color: var(--primary-dark);
}

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

.service-item-large {
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-item-large:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 16px;
    color: var(--text-light);
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 5px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--primary-dark);
    transform: translateX(5px);
}

.services-more {
    text-align: center;
    margin-top: 50px;
}

.link-arrow {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-right: 25px;
}

.link-arrow::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: right 0.3s ease;
}

.link-arrow:hover::after {
    right: -5px;
}

.trust-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.trust-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.trust-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.stats-split {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-medium);
}

.testimonial-split {
    display: flex;
    min-height: 500px;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

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

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
}

blockquote p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

.process-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-dark);
}

.process-steps-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.7;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.cta-banner {
    padding: 80px 20px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-banner h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: scale(1.05);
}

.form-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.form-intro {
    flex: 1;
    min-width: 300px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
}

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

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

.feature-icon {
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 14px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.info-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.info-split {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.info-block p {
    color: var(--text-medium);
    line-height: 1.7;
}

.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}

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

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

.footer-column h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(44, 95, 45, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.5);
}

.page-hero {
    padding: 100px 20px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.page-intro {
    font-size: 20px;
    color: var(--text-medium);
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-split {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
    align-items: center;
}

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

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

.service-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 15px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.service-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-medium);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-pricing-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.pricing-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.pricing-from {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-period {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-note {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

.btn-service-page {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service-page:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.comparison-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background-color: var(--bg-white);
    border-collapse: collapse;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary-dark);
}

.cta-section-alt {
    padding: 100px 20px;
    background-color: var(--primary-dark);
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 40px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-section-alt p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.about-story {
    padding: 80px 20px;
}

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

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-dark);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--bg-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
}

.value-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

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

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

.member-photo {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.member-role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.approach-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.approach-content > p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-point {
    display: flex;
    gap: 25px;
}

.point-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.6;
}

.point-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.point-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stats-extended {
    padding: 80px 20px;
    background-color: var(--primary-color);
}

.stats-extended h2 {
    font-size: 40px;
    text-align: center;
    color: var(--bg-white);
    margin-bottom: 60px;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    min-width: 200px;
}

.stat-value {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-description {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.certifications-section {
    padding: 80px 20px;
}

.certifications-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.certifications-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 25px;
}

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

.certifications-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-medium);
}

.certifications-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-size: 24px;
}

.contact-main {
    padding: 80px 20px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 45, 0.9);
    padding: 20px;
    color: var(--bg-white);
    text-align: center;
}

.map-info {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-faq {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-faq h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-hours-extended {
    padding: 80px 20px;
}

.contact-hours-extended h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.hours-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.hours-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.hours-time {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.hours-item p {
    font-size: 15px;
    color: var(--text-medium);
}

.thanks-hero {
    padding: 100px 20px 60px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-hero h1 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.thanks-info {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.thanks-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.thanks-step {
    display: flex;
    gap: 25px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.step-number-thanks {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.6;
}

.step-content-thanks h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.step-content-thanks p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.thanks-selected-service {
    padding: 60px 20px;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.selected-service-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.selected-service-box p {
    font-size: 17px;
    color: var(--text-medium);
}

.thanks-resources {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.thanks-resources h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.resource-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.resource-card p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.thanks-contact-alt {
    padding: 60px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-contact-alt h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.thanks-contact-alt p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.email-large {
    font-size: 24px;
    font-weight: 600;
}

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.legal-update {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 15px;
}

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

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.legal-page strong {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    background-color: var(--bg-white);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-dark);
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .service-item-large,
    .service-item-large:nth-child(even) {
        flex-direction: column;
    }

    .service-content {
        padding: 30px;
    }

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

    .testimonial-content {
        padding: 50px 30px;
    }

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

    .stats-split {
        gap: 40px;
    }

    .process-steps-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        padding: 20px;
    }

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

    .page-hero h1 {
        font-size: 36px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .container-split {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .btn-hero {
        padding: 14px 30px;
        font-size: 16px;
    }

    .service-content h3 {
        font-size: 26px;
    }

    .price-value {
        font-size: 28px;
    }

    .stat-number {
        font-size: 42px;
    }

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