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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 0;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

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

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

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

.hero-section {
    min-height: 580px;
    background: linear-gradient(135deg, rgba(44,62,80,0.92), rgba(52,152,219,0.88)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 36px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 16px 42px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    padding: 16px 42px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

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

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 26px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.section-title-left {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-block {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 38px 32px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 48px;
    margin-bottom: 18px;
}

.value-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-color);
}

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

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

.story-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.story-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.8;
}

.story-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.step {
    flex: 1 1 calc(50% - 18px);
    min-width: 260px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.step-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

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

.service-content {
    padding: 28px;
}

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

.service-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.btn-service {
    display: inline-block;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-color);
    transform: translateX(4px);
}

.services-cta-box {
    text-align: center;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 18px;
    color: var(--text-dark);
}

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

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

.testimonial-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.testimonial {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
}

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

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

.visual-break {
    min-height: 400px;
    background: linear-gradient(135deg, rgba(52,152,219,0.9), rgba(44,62,80,0.9)), url('https://images.unsplash.com/photo-1556911220-bff31c812dba?w=1600&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.break-content {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
}

.break-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.break-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.trust-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 28px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.trust-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.order-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.order-intro {
    text-align: center;
    margin-bottom: 50px;
}

.order-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.order-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.order-form {
    background: var(--bg-light);
    padding: 42px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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%;
    background: var(--accent-color);
    color: #ffffff;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.final-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.main-footer {
    background: var(--primary-color);
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1 1 220px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    opacity: 0.8;
}

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

.sticky-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #ffffff;
    padding: 24px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-cookie.accept {
    background: var(--success-color);
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #229954;
}

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

.btn-cookie.reject:hover {
    background: var(--bg-light);
}

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

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-content {
    padding: 90px 20px;
    background: var(--bg-white);
}

.about-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

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

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

.mission-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.values-detailed h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.value-detail {
    margin-bottom: 36px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.value-detail h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.team-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-feature {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.team-feature h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.team-feature p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.approach-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-block {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.approach-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.why-trust-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.trust-reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-reason {
    flex: 1 1 calc(50% - 14px);
    min-width: 280px;
    padding: 28px;
    background: var(--bg-white);
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

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

.cta-about {
    padding: 80px 20px;
    background: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-intro {
    padding: 60px 20px 40px;
    background: var(--bg-white);
}

.intro-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-lead {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.service-description p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-details-list h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.service-details-list ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 24px;
}

.service-details-list li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.price-label {
    font-size: 15px;
    color: var(--text-light);
    margin-right: 10px;
}

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

.btn-service-page {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-service-page:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.custom-service {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.custom-service h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.custom-service p {
    font-size: 17px;
    color: var(--text-light);
}

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

.pricing-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.pricing-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.factor {
    flex: 1 1 calc(50% - 16px);
    min-width: 260px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 8px;
}

.factor h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.pricing-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-services h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-color);
}

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

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-color);
}

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

.contact-block a {
    color: var(--secondary-color);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 100px 40px;
    text-align: center;
    font-size: 32px;
}

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

.contact-faq h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.faq-item {
    margin-bottom: 32px;
    padding: 28px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.contact-cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--success-color), var(--secondary-color));
    text-align: center;
}

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

.thanks-icon {
    font-size: 80px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.2);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.thanks-content h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 24px;
}

.selected-service-info {
    font-size: 17px;
    padding: 18px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
}

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

.next-steps h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.next-step {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.next-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.thanks-info {
    padding: 60px 20px;
    background: var(--bg-light);
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 38px;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-color);
}

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

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

.thanks-actions h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

.action-link {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.legal-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.legal-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.legal-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.legal-text ul {
    list-style: disc;
    padding-left: 28px;
    margin-bottom: 20px;
}

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

.legal-text a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 18px;
        font-size: 14px;
    }

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

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

    .intro-grid,
    .mission-grid {
        flex-direction: column;
        gap: 40px;
    }

    .section-title-center,
    .section-title-left {
        font-size: 32px;
    }

    .value-block,
    .step,
    .service-card,
    .testimonial,
    .trust-item,
    .approach-block,
    .team-feature,
    .trust-reason,
    .factor {
        flex: 1 1 100%;
    }

    .service-item,
    .service-item.reverse,
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .order-form {
        padding: 28px;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

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

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