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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

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

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

.btn-accept:hover {
    background: #d35400;
}

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

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

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

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

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

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

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

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    margin: 30px 0 40px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
}

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

.services-grid {
    padding: 100px 50px;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.section-header h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 19px;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.card-content {
    padding: 35px 30px;
}

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

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

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

.select-service:hover {
    background: #1a252f;
}

.split-standard {
    display: flex;
    background: var(--bg-white);
}

.split-content-left {
    flex: 1;
    padding: 90px 70px;
}

.split-content-left h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.split-image-right {
    flex: 1;
    overflow: hidden;
}

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

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

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

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

.step-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonials-section {
    padding: 100px 50px;
    background: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 70px;
    color: var(--primary-color);
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: white;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

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

.author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.form-split {
    display: flex;
    min-height: 700px;
}

.form-left {
    flex: 1;
    background: var(--primary-color);
    color: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.95;
}

.trust-indicators {
    display: flex;
    gap: 50px;
}

.indicator {
    display: flex;
    flex-direction: column;
}

.indicator strong {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.indicator span {
    font-size: 15px;
    opacity: 0.9;
}

.form-right {
    flex: 1;
    background: var(--bg-light);
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

.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 18px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--secondary-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: #d35400;
}

.final-cta {
    padding: 100px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

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

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 30px;
}

.hero-overlay h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 20px;
    opacity: 0.95;
}

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

.values-section h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 70px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 45px 40px;
    background: var(--bg-light);
    border-radius: 10px;
}

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

.value-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.timeline-section h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 70px;
    color: var(--primary-color);
}

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

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 120px;
}

.timeline-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.certifications-section {
    padding: 100px 50px;
    background: var(--bg-white);
}

.certifications-section h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 70px;
    color: var(--primary-color);
}

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

.cert-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    padding: 40px 35px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.cert-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cert-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

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

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

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.service-detail {
    display: flex;
    min-height: 600px;
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-info > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-includes {
    list-style: none;
    margin-bottom: 35px;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 1;
}

.service-pricing {
    margin-bottom: 30px;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.why-choose {
    padding: 100px 50px;
    background: var(--bg-light);
}

.why-choose h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 70px;
    color: var(--primary-color);
}

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

.benefit {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px 35px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.benefit h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.cta-services h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-info-section {
    padding: 80px 50px;
    background: var(--bg-light);
}

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

.contact-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    padding: 40px 35px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

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

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

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

.contact-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.info-blocks {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.info-block {
    flex: 1;
    min-width: 200px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
}

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

.map-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    padding: 25px;
    color: white;
    text-align: center;
}

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

.visit-section {
    padding: 80px 50px;
    background: var(--bg-white);
    text-align: center;
}

.visit-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.visit-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.visit-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.visit-section a:hover {
    text-decoration: underline;
}

.faq-contact {
    padding: 80px 50px;
    background: var(--bg-light);
}

.faq-contact h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 35px 40px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 50px;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
}

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

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
}

.next-steps {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    margin: 50px 0;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.step-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.step-item p {
    font-size: 15px;
    color: var(--text-dark);
}

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

.btn-primary {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.while-waiting {
    padding: 80px 50px;
    background: var(--bg-white);
}

.while-waiting h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.waiting-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    padding: 40px 35px;
    background: var(--bg-light);
    border-radius: 10px;
}

.waiting-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.waiting-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.waiting-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.waiting-card a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 80px 50px;
    background: var(--bg-white);
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0 20px 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .form-split,
    .service-detail {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .split-image,
    .split-content,
    .split-content-left,
    .split-image-right,
    .form-left,
    .form-right,
    .service-visual,
    .service-info {
        flex: none;
        width: 100%;
    }

    .hero-split {
        min-height: auto;
    }

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

    .nav-links {
        gap: 20px;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .trust-indicators {
        gap: 30px;
    }

    .info-blocks {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-left {
        padding: 50px 30px;
    }

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

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

    .split-content,
    .split-content-left,
    .form-left,
    .form-right,
    .service-info {
        padding: 50px 30px;
    }

    .section-header h2,
    .values-section h2,
    .testimonials-section h2,
    .timeline-section h2,
    .certifications-section h2,
    .why-choose h2 {
        font-size: 34px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .value-card,
    .benefit {
        flex: 1 1 100%;
    }

    .testimonial {
        flex: 1 1 100%;
    }

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

    .timeline-year {
        font-size: 36px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .step-list {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

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

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

    .section-header h2 {
        font-size: 28px;
    }

    .split-content h2,
    .split-content-left h2,
    .form-left h2 {
        font-size: 32px;
    }

    .contact-grid {
        gap: 25px;
    }

    .contact-card {
        flex: 1 1 100%;
    }

    .waiting-card {
        flex: 1 1 100%;
    }

    .cert-item {
        flex: 1 1 100%;
    }
}