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

:root {
    --primary-color: #2c5f7d;
    --primary-dark: #1a3d52;
    --primary-light: #4a8db3;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --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 32px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
}

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

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

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

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

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

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

.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-brand a {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

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

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

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

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

.hero-left {
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

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

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

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

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

.btn-primary,
.btn-secondary,
.btn-primary-inverse {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

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

.btn-primary-inverse:hover {
    background: transparent;
    color: var(--bg-white);
}

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

.indicators-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.indicator-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.intro-split,
.story-split,
.team-split,
.testimonials-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

.split-content,
.split-image,
.story-content,
.story-image,
.team-content,
.team-image,
.testimonials-left,
.testimonials-right {
    flex: 1;
}

.split-content,
.story-content,
.team-content,
.testimonials-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

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

.split-content p,
.story-content p,
.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.feature-points {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.point-icon {
    color: var(--success-color);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-point span:last-child {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

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

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    align-items: stretch;
    min-height: 400px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-visual,
.service-details {
    flex: 1;
}

.service-visual {
    position: relative;
    overflow: hidden;
}

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

.service-card-split:hover .service-visual img {
    transform: scale(1.05);
}

.service-details {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.service-price {
    margin: 20px 0 30px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

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

.price-unit {
    font-size: 16px;
    color: var(--text-light);
}

.btn-service {
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

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

.testimonials-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-content cite {
    font-size: 15px;
    color: var(--text-medium);
    font-style: normal;
    font-weight: 600;
}

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

.order-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.order-info,
.order-form-container {
    flex: 1;
}

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

.order-info p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.benefit-item strong {
    font-size: 17px;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-medium);
    margin: 0;
}

.order-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 125, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

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

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

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

.cta-banner {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

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

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: #c49563;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    color: var(--bg-white);
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.value-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: var(--text-dark);
}

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

.stats-banner {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-white);
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

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

.commitment-split {
    display: flex;
    gap: 60px;
}

.commitment-text,
.commitment-cta {
    flex: 1;
}

.commitment-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.commitment-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.commitment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.commitment-list li {
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

.cta-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 120px;
}

.cta-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 25px;
}

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image,
.service-detail-content {
    flex: 1;
}

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

.service-detail-content {
    padding: 50px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.service-includes li {
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

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

.pricing-notes h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.notes-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.note-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.note-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.cta-box-large {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.cta-box-large h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-box-large p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.contact-split {
    display: flex;
    gap: 60px;
}

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

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

.contact-info-side > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-detail-block {
    margin-bottom: 35px;
}

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

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

.contact-address {
    line-height: 1.8;
}

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

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.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: var(--bg-white);
    padding: 20px;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.contact-extra-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

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

.contact-extra-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 10px;
}

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

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

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

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

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

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

.cta-contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--success-color) 0%, #45a049 100%);
    text-align: center;
    color: var(--bg-white);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.thanks-message {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
}

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

.thanks-split {
    display: flex;
    gap: 60px;
}

.thanks-info,
.thanks-aside {
    flex: 1;
}

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

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

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

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

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

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

.info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

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

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list li {
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

.service-selected {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
}

.service-selected h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--bg-white);
}

.service-selected p {
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-white);
}

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

.thanks-additional h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.additional-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.link-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.link-card h3 {
    font-size: 20px;
    margin: 20px 20px 10px;
    color: var(--text-dark);
}

.link-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0 20px 20px;
}

.link-card .btn-secondary {
    margin: 0 20px 25px;
    font-size: 14px;
    padding: 12px 28px;
}

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

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

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

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

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

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

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

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

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.legal-table thead {
    background: var(--primary-color);
    color: var(--bg-white);
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    font-size: 15px;
}

.legal-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.legal-table tbody tr:last-child {
    border-bottom: none;
}

.legal-table tbody tr:hover {
    background: var(--bg-light);
}

.legal-note {
    background: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    margin: 25px 0;
    border-radius: 4px;
}

.legal-note strong {
    color: var(--text-dark);
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.cookie-control {
    margin: 30px 0;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .story-split,
    .team-split,
    .testimonials-split {
        flex-direction: column;
    }

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

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

    .order-split,
    .commitment-split,
    .contact-split,
    .thanks-split {
        flex-direction: column;
    }

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

    .split-content,
    .story-content,
    .team-content,
    .testimonials-left {
        padding: 50px 30px;
    }

    .service-details {
        padding: 40px 30px;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-white);
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text {
        font-size: 17px;
    }

    .indicators-grid {
        gap: 30px;
    }

    .indicator-item {
        flex: 1 1 calc(50% - 15px);
        min-width: 140px;
    }

    .values-grid {
        flex-direction: column;
    }

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

    .stats-grid {
        gap: 30px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 15px);
        min-width: 140px;
    }

    .notes-grid,
    .faq-grid,
    .additional-links {
        flex-direction: column;
    }

    .note-card,
    .faq-item,
    .link-card {
        flex: 1 1 100%;
    }

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

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

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

    .cta-box {
        position: static;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}

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

    .section-header-center h2,
    .section-title-center {
        font-size: 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-primary-inverse {
        padding: 14px 30px;
        font-size: 15px;
    }

    .order-form-container {
        padding: 25px;
    }

    .service-details {
        padding: 30px 20px;
    }

    .service-detail-content {
        padding: 30px 20px;
    }

    .cta-box-large {
        padding: 40px 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}