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

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --dark-color: #202124;
    --gray-color: #5f6368;
    --light-gray: #f1f3f4;
    --white: #ffffff;
    --danger-color: #ea4335;
    --warning-color: #fbbc04;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

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

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

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

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background-color: #2d8e47;
}

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

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

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

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

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

.hero-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 60px 40px;
}

.hero-text-wrapper {
    max-width: 600px;
}

.hero-text-wrapper h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--white);
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-right {
    background-color: var(--light-gray);
    padding: 0;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

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

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

.intro-visual,
.intro-content {
    flex: 1;
}

.intro-visual {
    background-color: var(--light-gray);
    overflow: hidden;
}

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

.intro-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

.intro-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 18px;
}

.trust-numbers {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 80px 20px;
}

.numbers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.number-card {
    text-align: center;
    color: var(--white);
}

.number-value {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.number-label {
    font-size: 18px;
    opacity: 0.95;
}

.story-section {
    padding: 100px 20px;
    background-color: var(--light-gray);
}

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

.story-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

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

.story-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 17px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-secondary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.services-overview {
    padding: 100px 20px;
    background-color: var(--white);
}

.services-header-split {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
}

.services-header-left,
.services-header-right {
    flex: 1;
}

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header-left p {
    font-size: 18px;
    color: var(--gray-color);
}

.services-header-right {
    display: flex;
    align-items: center;
}

.services-note {
    font-size: 16px;
    color: var(--gray-color);
    padding: 24px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(52, 168, 83, 0.2);
}

.service-badge,
.featured-badge,
.premium-badge,
.express-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.service-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--gray-color);
}

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

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

.select-service:hover {
    background-color: #1557b0;
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.form-left {
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.selected-service-display {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: var(--border-radius);
    margin-top: 32px;
}

.selected-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.selected-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.selected-price {
    font-size: 28px;
    font-weight: 800;
}

.form-right {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

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

.testimonials-split {
    padding: 100px 20px;
    background-color: var(--light-gray);
}

.testimonial-item {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.testimonial-content,
.testimonial-meta {
    flex: 1;
}

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

.testimonial-author {
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 600;
}

.testimonial-service {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-size: 14px;
}

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

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

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

.why-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.why-left p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.why-right {
    padding: 80px 60px;
    background-color: var(--white);
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-point h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.why-point p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.6;
}

.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.final-cta-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 800;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--white);
    color: #f5576c;
    font-weight: 700;
    font-size: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

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

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

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

.footer-section p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.sticky-cta a:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.services-detail-page {
    padding: 80px 20px;
}

.services-intro-split {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
}

.services-intro-left,
.services-intro-right {
    flex: 1;
}

.services-intro-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.comparison-hint {
    background-color: var(--light-gray);
    padding: 32px;
    border-radius: var(--border-radius);
}

.comparison-hint h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.comparison-hint ul {
    list-style: none;
}

.comparison-hint li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-color);
}

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

.service-detail-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 450px;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
    position: relative;
}

.service-detail-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-card.featured {
    border-color: var(--secondary-color);
}

.service-detail-card.premium {
    border-color: #f5576c;
}

.service-detail-card.express {
    border-color: var(--warning-color);
}

.service-detail-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--light-gray);
}

.service-detail-header h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.service-detail-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-note {
    font-size: 14px;
    color: var(--gray-color);
}

.service-detail-body h4 {
    font-size: 18px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--dark-color);
}

.detail-list {
    list-style: none;
    margin-bottom: 24px;
}

.detail-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--gray-color);
}

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

.btn-service-select {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-service-select:hover {
    background-color: #1557b0;
}

.faq-services {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

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

.faq-container h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: var(--white);
    padding: 28px;
    border-radius: var(--border-radius);
}

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

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

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

.cta-bottom-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.cta-bottom-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}

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

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

.about-story-left,
.about-story-right {
    flex: 1;
}

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

.about-story-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
}

.about-story-left p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.about-story-right {
    background-color: var(--light-gray);
    overflow: hidden;
}

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

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

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 28px;
}

.mission-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

.about-numbers-left,
.about-numbers-right {
    flex: 1;
}

.about-numbers-left {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-numbers-left h2 {
    font-size: 42px;
}

.about-numbers-right {
    padding: 80px 60px;
    background-color: var(--light-gray);
}

.about-number-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-number-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 200px;
}

.about-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.about-number-label {
    font-size: 16px;
    color: var(--gray-color);
}

.about-team {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.team-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.team-header p {
    font-size: 18px;
    color: var(--gray-color);
}

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

.team-member {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.6;
}

.about-values-split {
    display: flex;
    min-height: 600px;
    background-color: var(--light-gray);
}

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

.values-left {
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.values-left h2 {
    font-size: 42px;
}

.values-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.value-item p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.6;
}

.about-certifications {
    padding: 80px 20px;
    background-color: var(--white);
}

.cert-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cert-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cert-item {
    padding: 28px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.cert-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.cert-item p {
    font-size: 15px;
    color: var(--gray-color);
}

.about-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

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

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

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

.contact-info-side,
.contact-content-side {
    flex: 1;
}

.contact-info-side {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 60px;
}

.contact-info-side h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-block a {
    color: var(--white);
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    opacity: 0.75;
    margin-top: 8px;
}

.contact-content-side {
    padding: 80px 60px;
    background-color: var(--white);
}

.contact-content-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-faq {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

.contact-cta-box {
    margin-top: 48px;
    padding: 32px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-cta-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-cta-box p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #1557b0;
}

.contact-map-placeholder {
    padding: 0;
    background-color: var(--light-gray);
}

.map-container {
    max-width: 100%;
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    color: var(--gray-color);
}

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

.map-note {
    font-size: 14px;
}

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

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

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

.legal-updated {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--light-gray);
}

.legal-table th {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--dark-color);
}

.legal-table td {
    color: var(--gray-color);
}

.thanks-page {
    padding: 100px 20px;
    background-color: var(--light-gray);
    min-height: 600px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.thanks-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 48px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 48px;
}

.thanks-info h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--dark-color);
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

.step-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

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

.thanks-service-info {
    padding: 24px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 32px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

.thanks-contact {
    font-size: 15px;
    color: var(--gray-color);
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .why-us-split,
    .about-story-split,
    .about-numbers-split,
    .about-values-split,
    .contact-main-split {
        flex-direction: column;
    }

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

    .testimonial-item,
    .testimonial-item.reverse {
        flex-direction: column;
    }

    .services-header-split,
    .services-intro-split,
    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-card,
    .service-detail-card,
    .faq-item,
    .team-member,
    .about-number-item {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .hero-text-wrapper h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .intro-content h2,
    .services-header-left h2,
    .final-cta-content h2,
    .mission-content h2,
    .about-numbers-left h2,
    .values-left h2,
    .about-cta-content h2 {
        font-size: 32px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

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

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

    .cookie-content {
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .hero-text-wrapper h1,
    .page-hero-content h1 {
        font-size: 28px;
    }

    .hero-subtext,
    .page-hero-content p {
        font-size: 16px;
    }

    .intro-content,
    .why-left,
    .why-right,
    .about-story-left,
    .about-numbers-right,
    .values-right,
    .contact-info-side,
    .contact-content-side {
        padding: 40px 24px;
    }

    .form-right {
        padding: 24px;
    }

    .services-grid {
        gap: 20px;
    }

    .number-value {
        font-size: 42px;
    }

    .thanks-container {
        padding: 40px 24px;
    }
}
