:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --primary-light: #3d7a3e;
    --accent-color: #8b6914;
    --text-dark: #222222;
    --text-medium: #555555;
    --text-light: #777777;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: var(--bg-light);
    padding: 60px 40px;
}

.hero-text {
    max-width: 550px;
}

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

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

.hero-right {
    overflow: hidden;
    background: var(--primary-color);
}

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

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

.cta-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.trust-indicators {
    background: var(--bg-white);
    padding: 60px 20px;
}

.indicators-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.indicator {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.indicator h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.indicator p {
    color: var(--text-medium);
    font-size: 14px;
}

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

.split-content,
.split-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content {
    padding: 60px 50px;
    background: var(--bg-white);
}

.split-content > * {
    max-width: 550px;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.split-image {
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.services-pricing {
    background: var(--bg-light);
    padding: 80px 20px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select-service {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

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

.cta-inline {
    background: var(--primary-color);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.cta-inline h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-inline .cta-secondary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-inline .cta-secondary:hover {
    background: var(--bg-light);
    border-color: var(--bg-light);
}

.quality-list {
    list-style: none;
    margin-top: 24px;
}

.quality-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 14px;
    color: var(--text-medium);
}

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

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

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-author {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 600;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

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

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

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

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

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

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

.order-form {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

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

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

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.final-cta {
    background: var(--primary-dark);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    color: var(--bg-light);
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--bg-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: var(--bg-light);
    font-size: 14px;
}

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

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

.lead {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-white);
}

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

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

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

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

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

.feature-list {
    list-style: none;
    margin: 24px 0 32px;
}

.feature-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
    font-size: 15px;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.additional-services {
    padding: 80px 20px;
    background: var(--bg-light);
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-item {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 260px;
}

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

.additional-item p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

.cta-services {
    background: var(--primary-color);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-light);
    padding: 40px 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 260px;
}

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

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

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

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

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

.timeline-year {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

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

.production-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.production-step {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.production-step img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.production-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.cta-about {
    background: var(--primary-dark);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 20px;
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

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

.contact-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.map-placeholder {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.directions-info {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.directions-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.directions-info ul {
    list-style: none;
}

.directions-info ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.directions-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.additional-contact {
    padding: 80px 20px;
    background: var(--bg-white);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

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

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

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

.cta-contact h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-contact p {
    font-size: 18px;
    margin-bottom: 16px;
}

.cta-contact a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.thanks-info {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.thanks-service {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-service h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.selected-service-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.thanks-contact {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.thanks-additional {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

.thanks-additional h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.thanks-additional p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.link-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

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

.updated-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

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

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }

    .hero-split,
    .split-section {
        flex-direction: column;
    }

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

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

    .services-grid {
        gap: 20px;
    }

    .service-card {
        min-width: 100%;
    }

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

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

    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

    .timeline-year {
        font-size: 24px;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        width: 100%;
    }

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

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

    .section-title {
        font-size: 30px;
    }

    .split-content h2 {
        font-size: 28px;
    }

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

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

    .step {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .lead {
        font-size: 18px;
    }

    .order-form {
        padding: 30px 20px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        width: 100%;
    }
}

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

    .section-title {
        font-size: 26px;
    }

    .split-content h2 {
        font-size: 24px;
    }

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

    .thanks-section h1 {
        font-size: 26px;
    }
}