:root {
    --primary-color: #4A90E2;
    --secondary-color: #50C878;
    --accent-color: #F5A623;
    --danger-color: #E94B3C;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #F7F9FC;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --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 24px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-main {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

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

.hero-section {
    display: flex;
    min-height: 500px;
    background: linear-gradient(135deg, #E8F4F8 0%, #F7F9FC 100%);
    padding: 60px 0;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 540px;
}

.hero-card h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-card p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-image-placeholder svg {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.cta-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 48px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

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

.card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon svg {
    width: 60px;
    height: 60px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.story-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.story-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.story-highlight {
    background: #FFF4E6;
    border-left: 4px solid var(--accent-color);
    padding: 24px;
    margin: 32px 0;
    border-radius: var(--radius-sm);
}

.story-highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--text-dark);
}

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

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

.section-header-card h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, #FFFAF0, var(--bg-white));
}

.service-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-age {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.detail-item {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-medium);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0;
}

.cta-service {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-service:hover {
    background: #3a7bc8;
    box-shadow: var(--shadow-md);
}

.more-services-link {
    text-align: center;
    margin-top: 32px;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.link-arrow:hover {
    color: #3a7bc8;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card.highlight {
    background: linear-gradient(135deg, #E8F4F8 0%, var(--bg-white) 100%);
    border: 2px solid var(--primary-color);
}

.quote-mark {
    font-size: 60px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 16px;
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
}

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

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

.approach-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

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

.approach-item {
    margin-bottom: 32px;
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.approach-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.approach-visual {
    flex: 1;
    max-width: 400px;
}

.visual-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7bc8 100%);
}

.cta-band-content {
    text-align: center;
    color: white;
}

.cta-band-content h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.cta-band-content .cta-primary-large {
    background: white;
    color: var(--primary-color);
}

.cta-band-content .cta-primary-large:hover {
    background: var(--bg-light);
}

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

.form-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-card > p {
    color: var(--text-medium);
    margin-bottom: 32px;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    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);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

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

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

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4,
.footer-col h5 {
    margin-bottom: 16px;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 15px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
}

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

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

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

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

.sticky-cta-btn {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
}

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

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

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

.btn-accept:hover {
    background: #40b368;
}

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

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

.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #F7F9FC 100%);
}

.hero-card-simple {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-card-simple h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-card-simple p {
    font-size: 20px;
    color: var(--text-medium);
}

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

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
}

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

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.team-intro-card {
    text-align: center;
    margin-bottom: 48px;
}

.team-intro-card h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.team-intro-card p {
    font-size: 18px;
    color: var(--text-medium);
}

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

.team-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.team-photo {
    margin-bottom: 20px;
}

.team-photo svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.team-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.team-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.impact-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.impact-card h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
}

.stats-row {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.impact-card > p {
    text-align: center;
    color: var(--text-medium);
    font-size: 17px;
    line-height: 1.8;
}

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

.approach-text-block {
    flex: 1;
}

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

.approach-text-block > p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.8;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-point {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
}

.approach-point strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.approach-point p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.approach-visual-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.commitment-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.commitment-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

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

.services-grid-full {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-full {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.service-card-full.featured {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, #FFFAF0, var(--bg-white));
}

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

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

.service-body h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.service-intro {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.service-topics li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

.service-topics li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-details-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.detail-box {
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-sm);
    flex: 1;
    min-width: 140px;
}

.detail-box strong {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-box span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-body > p {
    color: var(--text-medium);
    line-height: 1.8;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 24px;
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
}

.cta-service-large {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.cta-service-large:hover {
    background: #3a7bc8;
    box-shadow: var(--shadow-md);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    width: 100%;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

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

.contact-layout {
    display: flex;
    gap: 48px;
}

.contact-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
}

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

.contact-detail {
    margin-bottom: 20px;
}

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

.contact-detail strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

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

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

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

.directions-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.directions-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.directions-card > p {
    color: var(--text-medium);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.directions-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 240px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
}

.direction-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.direction-item p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

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

.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7bc8 100%);
    color: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

.cta-card .cta-primary-large {
    background: white;
    color: var(--primary-color);
}

.cta-card .cta-primary-large:hover {
    background: var(--bg-light);
}

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

.thanks-card {
    background: var(--bg-white);
    padding: 56px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 32px;
    width: 100px;
}

.thanks-icon svg {
    width: 100%;
    height: auto;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.thanks-details {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.thanks-next {
    text-align: left;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    margin: 32px 0;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.next-steps {
    list-style: none;
    counter-reset: steps;
}

.next-steps li {
    counter-increment: steps;
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.next-steps li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-contact {
    background: #FFF4E6;
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 32px 0;
}

.thanks-contact p {
    margin: 8px 0;
    color: var(--text-dark);
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #3a7bc8;
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

.additional-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
}

.additional-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.additional-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

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

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

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

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

.legal-section ul {
    margin: 16px 0 16px 24px;
}

.legal-section ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 24px 0;
        gap: 16px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        flex-direction: column-reverse;
        min-height: auto;
    }

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

    .card-grid,
    .services-grid,
    .testimonial-grid,
    .values-grid,
    .team-grid,
    .trust-grid,
    .additional-grid,
    .directions-grid {
        flex-direction: column;
    }

    .approach-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-service-large {
        width: 100%;
        text-align: center;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

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

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

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

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

    .cookie-buttons button {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 32px 24px;
    }

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

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

    .service-price {
        font-size: 28px;
    }

    .service-price-large {
        font-size: 32px;
    }

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

    .thanks-card {
        padding: 32px 24px;
    }

    .thanks-card h1 {
        font-size: 28px;
    }
}
