:root {
    --primary-green: #4CAF50;
    --primary-green-dark: #388E3C;
    --dark-text: #212121;
    --secondary-grey: #757575;
    --light-background: #F5F5F5;
    --pure-white: #FFFFFF;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-grey);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.section-wrapper {
    padding: 80px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--pure-white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background-color: var(--light-background);
    color: var(--dark-text);
    border-color: var(--secondary-grey);
}

.btn-secondary:hover {
    background-color: #E0E0E0;
    border-color: var(--dark-text);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--pure-white);
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.header.sticky {
    transform: translateY(0);
    box-shadow: var(--shadow-medium);
}

.header.sticky .logo-img {
    max-height: 50px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 70px;
    width: auto;
    transition: var(--transition-medium);
}

.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.phone-link:hover {
    color: var(--primary-green);
}

.phone-icon {
    color: var(--primary-green);
}

.cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--dark-text);
    transition: var(--transition-fast);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--pure-white);
    z-index: 1001;
    transition: var(--transition-medium);
    overflow-y: auto;
    padding: 80px 24px 24px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--dark-text);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-nav-link {
    display: block;
    padding: 16px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark-text);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--light-background);
    color: var(--primary-green);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--light-background);
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    font-weight: 500;
    color: var(--dark-text);
    border-radius: 8px;
}

.mobile-phone-link:hover {
    background-color: var(--light-background);
    color: var(--primary-green);
}

.mobile-cta {
    margin-top: 16px;
    width: 100%;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--pure-white);
    max-width: 800px;
    padding: 120px 20px 80px;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.hero-subpage {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-subpage .hero-content {
    padding: 60px 20px;
}

.about-trust {
    background-color: var(--light-background);
}

.about-trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-trust-text {
    font-size: 1.125rem;
    color: var(--secondary-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.trust-label {
    font-size: 0.9rem;
    color: var(--secondary-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    display: block;
    background-color: var(--pure-white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-light);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-background);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background-color: var(--primary-green);
    color: var(--pure-white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-description {
    color: var(--secondary-grey);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link::after {
    content: '→';
    transition: var(--transition-fast);
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

.why-choose-us {
    background-color: var(--pure-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.why-choose-item {
    text-align: center;
    padding: 24px;
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: var(--primary-green);
    border-radius: 50%;
    color: var(--pure-white);
}

.why-choose-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.why-choose-text {
    color: var(--secondary-grey);
    line-height: 1.6;
}

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

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-medium);
}

.testimonial {
    flex: 0 0 100%;
    padding: 0 20px;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.8;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
    font-style: normal;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--secondary-grey);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.carousel-dot.active,
.carousel-dot:hover {
    background-color: var(--primary-green);
    opacity: 1;
}

.cta-contact {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--pure-white);
}

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

.cta-title {
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-contact .btn-primary {
    background-color: var(--pure-white);
    color: var(--primary-green);
    border-color: var(--pure-white);
}

.cta-contact .btn-primary:hover {
    background-color: var(--light-background);
}

.cta-contact .btn-secondary {
    background-color: transparent;
    color: var(--pure-white);
    border-color: var(--pure-white);
}

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

.footer {
    background-color: var(--dark-text);
    color: var(--pure-white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    color: var(--pure-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-green);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--primary-green);
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-green);
}

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

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--pure-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-3px);
}

.all-services {
    background-color: var(--pure-white);
}

.service-process {
    background-color: var(--light-background);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 24px;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    color: var(--pure-white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.step-description {
    color: var(--secondary-grey);
    line-height: 1.6;
}

.benefits {
    background-color: var(--pure-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.benefit-card {
    background-color: var(--light-background);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-fast);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: var(--pure-white);
    border-radius: 50%;
    color: var(--primary-green);
    box-shadow: var(--shadow-light);
}

.benefit-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.benefit-text {
    color: var(--secondary-grey);
    line-height: 1.6;
}

.cta-services {
    background-color: var(--dark-text);
}

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

.cta-services .cta-title {
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.cta-services .cta-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-services .btn-primary {
    background-color: var(--primary-green);
    color: var(--pure-white);
}

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

.service-description {
    background-color: var(--pure-white);
}

.service-description-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-description-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary-grey);
    margin-bottom: 2rem;
}

.service-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.service-list {
    display: grid;
    gap: 16px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--dark-text);
}

.service-list svg {
    flex-shrink: 0;
    color: var(--primary-green);
}

.service-benefits {
    background-color: var(--light-background);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.icon-grid-item {
    text-align: center;
    padding: 24px;
}

.icon-grid-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: var(--primary-green);
    border-radius: 12px;
    color: var(--pure-white);
    transition: var(--transition-fast);
}

.icon-grid-item:hover .icon-grid-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.icon-grid-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.icon-grid-text {
    color: var(--secondary-grey);
    line-height: 1.6;
}

.related-services {
    background-color: var(--pure-white);
}

.service-cards-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card-small {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--light-background);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-fast);
}

.service-card-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.service-card-small-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pure-white);
    border-radius: 10px;
    color: var(--primary-green);
}

.service-card-small-title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.service-card-small-text {
    font-size: 0.9rem;
    color: var(--secondary-grey);
    line-height: 1.5;
}

.cta-specific {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

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

.cta-specific .cta-title {
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.cta-specific .cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-specific .btn-primary {
    background-color: var(--pure-white);
    color: var(--primary-green);
    border-color: var(--pure-white);
}

.cta-specific .btn-primary:hover {
    background-color: var(--light-background);
}

.cta-specific .btn-secondary {
    background-color: transparent;
    color: var(--pure-white);
    border-color: var(--pure-white);
}

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

.our-story {
    background-color: var(--pure-white);
}

.our-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.our-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.our-story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-grey);
    margin-bottom: 1.5rem;
}

.our-story-image {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.story-stat {
    text-align: center;
    padding: 24px;
    background-color: var(--light-background);
    border-radius: 12px;
    min-width: 140px;
}

.story-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.story-stat-label {
    font-size: 0.9rem;
    color: var(--secondary-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.our-values {
    background-color: var(--light-background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--pure-white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-fast);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: var(--primary-green);
    border-radius: 50%;
    color: var(--pure-white);
    transition: var(--transition-fast);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.value-text {
    color: var(--secondary-grey);
    line-height: 1.6;
    font-size: 0.95rem;
}

.certifications {
    background-color: var(--pure-white);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.certification-item {
    text-align: center;
    padding: 24px;
}

.certification-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: var(--light-background);
    border-radius: 50%;
    color: var(--primary-green);
}

.certification-title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.certification-text {
    color: var(--secondary-grey);
    font-size: 0.9rem;
}

.cta-about {
    background-color: var(--dark-text);
}

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

.cta-about .cta-title {
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.cta-about .cta-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-about .btn-primary {
    background-color: var(--primary-green);
    color: var(--pure-white);
}

.contact-info {
    background-color: var(--pure-white);
}

.contact-info-grid {
    max-width: 700px;
    margin: 0 auto;
}

.contact-details {
    display: grid;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background-color: var(--light-background);
    border-radius: 12px;
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    border-radius: 12px;
    color: var(--pure-white);
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact-text p {
    color: var(--secondary-grey);
    line-height: 1.5;
}

.contact-text a {
    color: var(--primary-green);
    font-weight: 600;
}

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

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

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

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

.required {
    color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background-color: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9e9e9e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 8px;
}

.form-success {
    display: none;
    margin-top: 20px;
    padding: 16px;
    background-color: #e8f5e9;
    color: var(--primary-green-dark);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-success.show {
    display: block;
}

.faq {
    background-color: var(--pure-white);
}

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

.accordion-item {
    border-bottom: 1px solid var(--light-background);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    font-family: var(--font-primary);
    text-align: left;
}

.accordion-header:hover {
    color: var(--primary-green);
}

.accordion-icon {
    flex-shrink: 0;
    transition: var(--transition-fast);
    color: var(--secondary-grey);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.accordion-content p {
    padding-bottom: 24px;
    color: var(--secondary-grey);
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

@media (min-width: 769px) {
    .nav-desktop {
        display: block;
    }
    
    .header-actions {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .our-story-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-wrapper {
        padding: 60px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .about-trust-text {
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 24px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .icon-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cards-small {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .accordion-header {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 70px;
    }
    
    .logo-img {
        max-height: 50px;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-wrapper {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.section-wrapper:nth-child(2) { animation-delay: 0.1s; }
.section-wrapper:nth-child(3) { animation-delay: 0.2s; }
.section-wrapper:nth-child(4) { animation-delay: 0.3s; }
.section-wrapper:nth-child(5) { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .section-wrapper {
        opacity: 1;
        animation: none;
    }
}
