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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c9a961;
    --light-accent: #e8d4a0;
    --text-dark: #0f0f0f;
    --text-light: #f8f8f8;
    --text-gray: #6b6b6b;
    --background-light: #fafafa;
    --background-dark: #2a2a3e;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu li a {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-center {
    text-align: center;
    color: var(--text-light);
    padding: 40px;
    max-width: 900px;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.5;
}

.intro-narrative {
    padding: 100px 20px;
    background: var(--text-light);
}

.opening-hook {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 400;
}

.intro-narrative p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
}

.insight-block {
    padding: 120px 20px;
    background: var(--background-dark);
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.split-text {
    flex: 1;
    color: var(--text-light);
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--accent-color);
    line-height: 1.2;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-inline {
    padding: 60px 20px;
    text-align: center;
    background: var(--background-light);
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-primary-large:hover {
    background: var(--light-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

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

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

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.story-card:nth-child(even) {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.story-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
}

.testimonial-section {
    padding: 100px 20px;
    background: var(--accent-color);
}

.testimonial-large {
    text-align: center;
    padding: 0;
}

.testimonial-large p {
    font-size: 32px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

.testimonial-large cite {
    font-size: 18px;
    font-style: normal;
    color: var(--primary-color);
    font-weight: 600;
}

.reality-check {
    padding: 100px 20px;
    background: var(--background-light);
}

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

.reality-columns {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.reality-item {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.reality-item:hover {
    transform: translateY(-5px);
}

.reality-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

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

.cta-dark-section h2 {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-dark-section p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-light-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--text-light);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-light-large:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.services-reveal {
    padding: 100px 20px;
    background: var(--background-light);
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-premium-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card-premium {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.service-card-premium.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #fef9f0 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-header h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-tagline {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.service-features ul {
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    padding: 10px 0 10px 30px;
    position: relative;
}

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

.service-price {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-period {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

.btn-service-select {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.form-section {
    padding: 100px 20px;
    background: var(--background-dark);
}

.form-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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(--accent-color);
}

.form-submit {
    margin-top: 35px;
}

.btn-submit-large {
    width: 100%;
    padding: 18px 40px;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-large:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.trust-indicators {
    padding: 80px 20px;
    background: var(--text-light);
}

.trust-indicators h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-gray);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

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

.sticky-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-sticky {
    padding: 12px 35px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: var(--light-accent);
}

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

.btn-reject:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

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

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

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

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

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

.footer-section ul li a {
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.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-small {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.page-hero-small h1 {
    font-size: 52px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 22px;
    color: var(--text-light);
    opacity: 0.9;
}

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

.about-intro {
    margin-bottom: 60px;
}

.text-large {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.timeline-year {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 100px;
}

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

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

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

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

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

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

.team-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0.9;
}

.team-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature-item h4 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

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

.cta-section-centered h2 {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-section-centered p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    opacity: 0.9;
}

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

.service-detail-card {
    max-width: 1100px;
    margin: 0 auto 50px;
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-detail-card.featured-card {
    border: 3px solid var(--accent-color);
}

.featured-badge-large {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 36px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-price-large span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
}

.service-detail-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.service-detail-description {
    flex: 2;
    min-width: 300px;
}

.service-detail-description h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.service-detail-description h3:first-child {
    margin-top: 0;
}

.service-detail-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-features-detailed {
    margin: 20px 0;
    padding-left: 0;
}

.service-features-detailed li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    padding: 8px 0 8px 30px;
    position: relative;
}

.service-features-detailed li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-detail-cta {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: flex-start;
}

.btn-service-select-large {
    width: 100%;
    padding: 18px 35px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select-large:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

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

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

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--text-light);
}

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

.comparison-table th {
    font-weight: 600;
}

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

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

.booking-cta-section {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
}

.booking-cta-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-cta-section p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 35px;
}

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

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

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

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

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    min-width: 50px;
}

.contact-text h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.contact-text a {
    color: var(--accent-color);
    font-weight: 600;
}

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

.contact-note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
}

.contact-emergency {
    margin-top: 40px;
    padding: 25px;
    background: var(--background-dark);
    color: var(--text-light);
    border-radius: 8px;
}

.contact-emergency h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

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

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
}

.map-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-box img {
    width: 100%;
    height: auto;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 100%);
    padding: 30px 20px;
}

.map-overlay p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

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

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.thanks-section {
    padding: 140px 20px 100px;
    background: var(--background-light);
    min-height: 80vh;
}

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

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

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

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

.thanks-details {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.selected-service {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

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

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

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

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

.btn-primary {
    padding: 14px 35px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

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

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

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

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

.legal-date {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
    list-style: disc;
}

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

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

@media (max-width: 968px) {
    .hero-title-large {
        font-size: 48px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        flex-direction: column;
        padding: 40px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .split-content {
        flex-direction: column;
        gap: 40px;
    }

    .story-card {
        flex-direction: column;
    }

    .story-card:nth-child(even) {
        flex-direction: column;
    }

    .reality-columns {
        flex-direction: column;
    }

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

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

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

    .team-features {
        flex-direction: column;
    }

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

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

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

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

    .section-title-centered {
        font-size: 36px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 600px) {
    .hero-title-large {
        font-size: 36px;
    }

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

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

    .section-title-centered {
        font-size: 28px;
    }

    .btn-primary-large,
    .btn-light-large,
    .btn-submit-large {
        font-size: 16px;
        padding: 15px 35px;
    }

    .booking-form {
        padding: 35px 25px;
    }

    .legal-content {
        padding: 35px 25px;
    }

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