:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #1a3a1b;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --background-alt: #f0f4f0;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

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

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

a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.header {
    background-color: var(--background-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo a:hover {
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    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: var(--transition);
}

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

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

.hero {
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--background-light) 100%);
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.hero-target,
.hero-problem {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.features {
    padding: 80px 0;
    background-color: var(--background-light);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--accent-color);
    padding: 20px 20px 10px;
}

.feature-card p {
    color: var(--text-light);
    padding: 0 20px 20px;
}

.why-choose {
    padding: 80px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.why-choose-text ul {
    list-style: disc;
    padding-left: 25px;
}

.why-choose-text li {
    color: var(--text-color);
    margin-bottom: 12px;
    padding-left: 5px;
}

.why-choose-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.lead-form-section {
    padding: 80px 0;
    background-color: var(--background-alt);
}

.lead-form-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.lead-form-section > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.lead-form,
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.checkbox-group label a {
    color: var(--primary-color);
}

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

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-intro,
.mission-values,
.our-commitment {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img,
.commitment-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-text h2,
.commitment-text h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.about-text p,
.commitment-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.mission-section {
    background-color: var(--background-alt);
    padding: 60px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.mission-section h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
}

.mission-section p {
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 15px;
}

.values-section h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.commitment-text ul {
    list-style: disc;
    padding-left: 25px;
}

.commitment-text li {
    color: var(--text-color);
    margin-bottom: 10px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: var(--primary-color);
}

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

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
}

.business-hours h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.business-hours ul {
    background-color: var(--background-alt);
    padding: 20px;
    border-radius: var(--border-radius);
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-color);
}

.business-hours li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.map-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.map-section h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-align: center;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.legal-info {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--background-light) 100%);
}

.legal-info h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    text-align: center;
}

.legal-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content p {
    background-color: var(--background-color);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 0;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.legal-content p:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--accent-color);
}

.services-intro {
    padding: 60px 0;
    background-color: var(--background-light);
}

.intro-content h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-align: center;
}

.intro-content p {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    padding: 60px 0;
}

.service-card-large {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.service-card-large:nth-child(even) {
    direction: rtl;
}

.service-card-large:nth-child(even) > * {
    direction: ltr;
}

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

.service-content {
    padding: 40px;
}

.service-content h2 {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

.service-content h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.service-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.service-content li {
    color: var(--text-color);
    margin-bottom: 8px;
}

.example-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.example-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.service-process {
    padding: 80px 0;
    background-color: var(--background-alt);
}

.service-process h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.process-step h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.business-model-content {
    padding: 80px 0;
}

.bm-section {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.bm-section h2 {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
}

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

.bm-section ul {
    list-style: disc;
    padding-left: 25px;
}

.bm-section li {
    color: var(--text-color);
    margin-bottom: 10px;
}

.data-table {
    overflow-x: auto;
    margin-top: 20px;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.data-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.data-table tr:hover {
    background-color: var(--background-alt);
}

.legal-content {
    padding: 80px 0;
}

.legal-content article {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-content li {
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-box {
    background-color: var(--background-alt);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 8px;
    color: var(--text-color);
}

.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.cookie-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.cookie-settings-link {
    text-align: center;
    margin-top: 40px;
}

.sitemap-content {
    padding: 60px 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sitemap-section {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.sitemap-section h2 {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.sitemap-section ul {
    list-style: none;
}

.sitemap-section li {
    margin-bottom: 10px;
}

.sitemap-section a {
    color: var(--text-color);
    display: block;
    padding: 8px 0;
}

.sitemap-section a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section address {
    font-style: normal;
}

.footer-section address p {
    margin-bottom: 8px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 30px;
}

.cookie-category {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.cookie-category p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-right: 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: var(--transition);
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.cookie-status {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-content,
    .about-content,
    .commitment-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-card-large {
        grid-template-columns: 1fr;
    }

    .service-card-large:nth-child(even) {
        direction: ltr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .lead-form,
    .contact-form {
        padding: 25px;
    }

    .bm-section,
    .legal-content-section article {
        padding: 25px;
    }

    .legal-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .features,
    .why-choose,
    .lead-form-section,
    .about-intro,
    .mission-values,
    .our-commitment,
    .contact-section,
    .services-grid,
    .service-process,
    .business-model-content,
    .legal-content-section,
    .legal-info {
        padding: 50px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .example-gallery {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
    }

    .legal-content {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .legal-content p {
        padding: 15px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
