:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --border-color: #e1e8ed;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --success: #2ecc71;
    --error: #e74c3c;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-color);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-visual-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.intro-alternating {
    padding: 100px 40px;
    background: var(--light-bg);
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-block {
    flex: 1;
}

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

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

.content-block ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-block li {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.visual-block {
    flex: 1;
}

.visual-block img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.problem-section {
    padding: 100px 40px;
    background: var(--primary-color);
    color: var(--white);
}

.problem-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.problem-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.services-grid {
    padding: 100px 40px;
    background: var(--white);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--dark-color);
    font-weight: 700;
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #d35400;
    transform: scale(1.02);
}

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

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

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

.testimonial-content cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.method-section {
    padding: 100px 40px;
}

.stats-section {
    padding: 80px 40px;
    background: var(--dark-color);
    color: var(--white);
}

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

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

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

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section-large {
    padding: 80px 40px;
    background: var(--secondary-color);
    color: var(--white);
}

.cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

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

.selected-service {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.selected-service.hidden {
    display: none;
}

.selected-service p {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #234d66;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 95, 125, 0.3);
}

.trust-section {
    padding: 80px 40px;
    background: var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(230, 126, 34, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4558 100%);
    padding: 120px 40px 80px;
    color: var(--white);
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

.story-section,
.mission-section,
.values-section,
.approach-section,
.team-section,
.impact-section {
    padding: 100px 40px;
}

.mission-section {
    background: var(--light-bg);
}

.approach-section {
    background: var(--white);
}

.mission-wrapper,
.team-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-wrapper h2,
.team-wrapper h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--dark-color);
    font-weight: 700;
}

.mission-wrapper p,
.team-wrapper p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.approach-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

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

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

.cta-about {
    padding: 80px 40px;
    background: var(--primary-color);
    color: var(--white);
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    padding: 80px 40px;
}

.service-detail-item.alt {
    background: var(--light-bg);
}

.service-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.age-range {
    background: var(--light-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.price-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

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

.comparison-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.comparison-wrapper h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.contact-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

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

.contact-block a {
    font-weight: 600;
}

.small-note {
    font-size: 14px;
    margin-top: 12px;
    font-style: italic;
}

.contact-visual img {
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.map-placeholder {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    margin-bottom: 10px;
}

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

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

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

.faq-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.cta-contact {
    padding: 80px 40px;
    background: var(--secondary-color);
    color: var(--white);
}

.thanks-section {
    padding: 100px 40px;
    min-height: 60vh;
}

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

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

.thanks-wrapper h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.service-confirmation {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid var(--success);
}

.service-confirmation.hidden {
    display: none;
}

.service-confirmation p {
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.next-steps {
    margin-bottom: 50px;
}

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

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

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

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

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

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

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.thanks-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

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

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

.social-proof {
    padding: 60px 40px;
    background: var(--light-bg);
}

.social-proof-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.social-proof-content p {
    font-size: 18px;
    color: var(--text-light);
}

.legal-page {
    padding: 60px 40px 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

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

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

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

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

.legal-content ul {
    margin: 16px 0 16px 20px;
}

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

    .split-layout {
        flex-direction: column;
    }

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

    .services-container {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content-left {
        padding: 60px 30px;
    }

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

    .hero-content-left p {
        font-size: 18px;
    }

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

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

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

    .approach-item {
        min-width: 100%;
    }

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

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

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

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

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

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

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

    .form-container {
        padding: 30px 20px;
    }

    .nav-links a {
        font-size: 14px;
    }
}