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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
    --white: #ffffff;
    --accent-color: #ff6b35;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    display: none;
}

.btn-primary-nav {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary-nav:hover {
    background: #234d24;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

.stat-label {
    font-size: 14px;
    color: var(--gray-color);
}

.hero-right {
    flex: 1;
    min-height: 400px;
}

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

.btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
}

.btn-hero:hover {
    background: #234d24;
    transform: translateY(-2px);
}

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

.intro-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.split-layout {
    display: flex;
    flex-direction: column;
}

.split-image {
    flex: 1;
    min-height: 400px;
}

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

.split-content {
    flex: 1;
    padding: 60px 20px;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.problem-section {
    background: var(--light-color);
}

.problem-list {
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.highlight-text {
    background: var(--white);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
}

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

.solution-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.solution-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 12px;
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.solution-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

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

.services-preview {
    background: var(--white);
}

.service-preview-list {
    margin: 30px 0;
}

.service-item-inline {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-item-inline strong {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.service-item-inline span {
    font-size: 16px;
    color: var(--gray-color);
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
}

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

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

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

.testimonials-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray-color);
}

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

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

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

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

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

.why-us-section {
    background: var(--white);
}

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

.difference-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.difference-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

.cta-section-mid {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #234d24 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
}

.btn-large:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

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

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

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

.number-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 200px;
}

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

.number-label {
    font-size: 16px;
    color: var(--gray-color);
    margin-top: 8px;
}

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

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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);
}

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

.btn-submit:hover {
    background: #234d24;
    transform: translateY(-2px);
}

.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

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

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

.btn-accept:hover {
    background: #234d24;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #234d24 100%);
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.services-intro {
    padding: 60px 20px;
    background: var(--white);
}

.intro-text-center {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-color);
}

.services-catalog {
    padding: 40px 20px 80px;
    background: var(--light-color);
}

.service-card-full {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card-full.highlighted-service {
    border: 3px solid var(--secondary-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f2d 100%);
    color: var(--white);
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h3 {
    font-size: 28px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
}

.service-content-detailed {
    padding: 40px 30px;
}

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

.service-includes h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.service-includes ul {
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-variants {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.variant-option {
    padding: 12px 0;
    font-size: 16px;
}

.variant-option strong {
    color: var(--dark-color);
}

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

.btn-service:hover {
    background: #234d24;
    transform: translateY(-2px);
}

.service-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 16px;
    margin-top: 20px;
    font-size: 16px;
}

.pricing-notes {
    padding: 60px 20px;
    background: var(--white);
}

.pricing-notes h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notes-list li {
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.notes-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.cta-section p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.about-story {
    padding: 80px 20px;
    background: var(--white);
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--gray-color);
}

.mission-section {
    background: var(--light-color);
}

.mission-section h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.mission-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 8px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

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

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

.section-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-stat {
    flex: 0 1 300px;
    text-align: center;
}

.team-stat strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-stat span {
    font-size: 16px;
    color: var(--gray-color);
}

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

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 80px;
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

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

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

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cert-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.cert-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.cert-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

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

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

.approach-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 50px;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-step {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 8px;
}

.approach-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.approach-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

.page-hero-small {
    background: linear-gradient(135deg, var(--primary-color) 0%, #234d24 100%);
    color: var(--white);
    padding: 60px 20px 40px;
    text-align: center;
}

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

.legal-content {
    padding: 60px 20px;
    background: var(--white);
}

.legal-update {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: var(--dark-color);
}

.legal-content h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--dark-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--gray-color);
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

.legal-content li {
    list-style: disc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--gray-color);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234d24;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

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

.cookies-table td {
    font-size: 14px;
    color: var(--gray-color);
}

.contact-content {
    padding: 60px 20px;
    background: var(--white);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
}

.contact-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-block a:hover {
    color: #234d24;
}

.contact-note {
    font-size: 14px;
    color: var(--gray-color);
    margin-top: 8px;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.contact-map h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 16px;
}

.map-overlay p {
    font-size: 18px;
    margin: 0;
}

.directions h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.directions p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--gray-color);
}

.contact-form-section {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

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

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

.faq-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

.thanks-section {
    padding: 80px 20px;
    background: var(--white);
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.thanks-details {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-selected {
    font-size: 18px;
    color: var(--dark-color);
}

.thanks-next {
    text-align: left;
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps {
    margin-left: 20px;
}

.next-steps li {
    list-style: decimal;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--gray-color);
}

.thanks-info {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.thanks-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #234d24;
}

.thanks-resources {
    padding: 80px 20px;
    background: var(--light-color);
}

.thanks-resources h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.resource-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.resource-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.resource-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.resource-card a:hover {
    color: #234d24;
}

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .hero-left,
    .hero-right {
        flex: 1;
    }

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

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

    .split-image,
    .split-content {
        flex: 1;
    }

    .nav-cta {
        display: block;
    }

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

    .process-step {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

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

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

    .intro-section h2,
    .solution-section h2,
    .trust-section h2,
    .process-section h2,
    .numbers-section h2,
    .form-section h2,
    .page-hero h1,
    .about-story h2,
    .values-section h2,
    .team-section h2,
    .achievements-section h2,
    .certifications-section h2,
    .approach-section h2,
    .cta-section h2,
    .faq-section h2,
    .thanks-content h1 {
        font-size: 28px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 14px;
    }
}
