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

:root {
    --primary-color: #2d6a4f;
    --secondary-color: #52b788;
    --accent-color: #95d5b2;
    --dark-color: #1b4332;
    --light-color: #d8f3dc;
    --text-dark: #212529;
    --text-light: #6c757d;
    --white: #ffffff;
    --background: #f8f9fa;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

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

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

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

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
}

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

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.hero-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 60px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    color: var(--white);
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtext {
    color: var(--light-color);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-right {
    min-height: 400px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary,
.btn-secondary,
.btn-cta,
.btn-primary-large {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

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

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

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

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

.btn-cta {
    background: var(--accent-color);
    color: var(--dark-color);
}

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

.btn-primary-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 50px;
    font-size: 18px;
}

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

.trust-bar {
    background: var(--background);
    padding: 40px 20px;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

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

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

.intro-left {
    min-height: 350px;
    background: var(--light-color);
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    padding: 50px 30px;
    background: var(--white);
}

.intro-content h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefits-asymmetric {
    padding: 70px 20px;
    background: var(--white);
}

.section-title {
    font-size: 36px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card {
    background: var(--background);
    padding: 35px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

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

.services-preview {
    background: var(--background);
    padding: 70px 20px;
}

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

.services-left h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.services-intro-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
}

.services-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.cta-inline {
    padding: 60px 20px;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
}

.cta-box h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--light-color);
    font-size: 16px;
    margin-bottom: 25px;
}

.testimonials-offset {
    padding: 70px 20px;
    background: var(--background);
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-featured {
    background: var(--light-color);
    border: 3px solid var(--secondary-color);
}

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

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

.testimonial-author strong {
    color: var(--dark-color);
    margin-bottom: 5px;
}

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

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

.process-content {
    padding: 60px 30px;
    background: var(--white);
}

.process-content h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 40px;
}

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

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

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

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

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

.process-image {
    min-height: 400px;
    background: var(--accent-color);
}

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

.form-section {
    padding: 70px 20px;
    background: var(--background);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.form-intro p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

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

.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 15px;
}

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

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

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

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

.footer-col p {
    color: #adb5bd;
    line-height: 1.8;
}

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

.footer-col a {
    color: #adb5bd;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

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

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

.sticky-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

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

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

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

.cookie-content p {
    color: var(--light-color);
    line-height: 1.6;
    text-align: center;
}

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

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

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

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

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

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

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

.page-hero h1 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--light-color);
    font-size: 18px;
}

.services-detailed {
    padding: 70px 20px;
    background: var(--white);
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    gap: 30px;
}

.service-detail-left {
    min-height: 300px;
    background: var(--accent-color);
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.service-detail-right p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features li {
    color: var(--text-dark);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

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

.services-cta h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.services-cta p {
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

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

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

.story-left p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-right {
    min-height: 400px;
    background: var(--accent-color);
}

.story-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.mission-values {
    padding: 70px 20px;
    background: var(--background);
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

.impact-numbers {
    padding: 70px 20px;
    background: var(--white);
}

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

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

.impact-item {
    text-align: center;
    padding: 30px;
    background: var(--background);
    border-radius: 8px;
}

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

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

.team-section {
    padding: 70px 20px;
    background: var(--background);
}

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

.team-intro {
    text-align: center;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

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

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--accent-color);
}

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

.team-member span {
    display: block;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-dark);
    line-height: 1.7;
}

.partners-section {
    padding: 70px 20px;
    background: var(--white);
    text-align: center;
}

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

.partners-section p {
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.cert-item {
    background: var(--background);
    padding: 20px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.about-cta p {
    color: var(--light-color);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-split {
    padding: 70px 20px;
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

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

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

.contact-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.contact-form-wrapper p {
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-cta {
    padding: 60px 20px;
    background: var(--white);
    text-align: center;
}

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

.contact-cta p {
    color: var(--text-dark);
    margin-bottom: 25px;
}

.thanks-hero {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
}

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

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

.next-steps {
    padding: 70px 20px;
    background: var(--background);
}

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

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

.step-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.thanks-additional {
    padding: 70px 20px;
    background: var(--white);
}

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

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

.additional-card {
    background: var(--background);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

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

.additional-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.policy-content {
    padding: 70px 20px;
    background: var(--white);
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
}

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

.policy-text h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

.policy-text p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-text ul {
    margin: 15px 0 15px 30px;
}

.policy-text li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

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

.policy-text a:hover {
    color: var(--secondary-color);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

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

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 5px;
    }

    .hero-split {
        flex-direction: row;
        min-height: 500px;
    }

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

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

    .trust-items {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

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

    .benefit-card {
        flex: 1 1 calc(50% - 15px);
    }

    .benefit-large {
        flex: 1 1 100%;
    }

    .benefit-wide {
        flex: 1 1 100%;
    }

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

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

    .testimonials-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 15px);
    }

    .testimonial-featured {
        flex: 1 1 100%;
    }

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

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

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

    .service-detail-card {
        flex-direction: row;
    }

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

    .service-detail-left,
    .service-detail-right {
        flex: 1;
    }

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

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

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

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

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

    .impact-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .team-member {
        flex: 1;
    }

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

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }

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

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

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

    .step-item {
        flex: 1 1 calc(50% - 15px);
        flex-direction: column;
    }

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

    .additional-card {
        flex: 1;
    }

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

    .footer-col {
        flex: 1 1 calc(25% - 30px);
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }
}

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

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

    .benefit-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .benefit-large {
        flex: 1 1 calc(66.666% - 15px);
    }

    .testimonials-layout {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .testimonial-featured {
        flex: 1.5;
    }

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

    .impact-item {
        flex: 1;
    }

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

    .value-card {
        flex: 1;
    }

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

    .faq-item {
        flex: 1;
    }
}
