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

:root {
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    background: var(--light-color);
}

.navigation {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

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

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

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

.hero-left {
    padding: 3rem;
    background: #fff;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1d4ed8;
}

.cta-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #059669;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

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

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

.intro-right {
    padding: 3rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-right p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 1.2rem;
}

.stats-section {
    background: var(--dark-color);
    color: #fff;
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

.service-row {
    display: flex;
    margin-bottom: 3rem;
}

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

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

.service-content {
    padding: 3rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-badge.popular {
    background: var(--warning-color);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-color);
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.btn-select-service {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1d4ed8;
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background: var(--light-color);
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.testimonial-author strong {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.why-us-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

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

.why-left {
    padding: 3rem;
    background: #fff;
}

.why-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.why-left > p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: var(--gray-color);
}

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

.cta-split {
    background: var(--primary-color);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-color);
}

.modal-close:hover {
    color: var(--dark-color);
}

.modal-content h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

.form-group input[readonly] {
    background: var(--light-color);
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #059669;
}

.footer-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--dark-color);
    color: #fff;
}

.footer-left,
.footer-right {
    flex: 1;
    padding: 3rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

.footer-copy {
    opacity: 0.7;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.3s, transform 0.3s;
}

.sticky-cta a:hover {
    background: #059669;
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 1500;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    color: var(--gray-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: var(--border-color);
    color: var(--dark-color);
}

.btn-reject:hover {
    background: #cbd5e1;
}

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

.story-split,
.mission-split,
.approach-split,
.team-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.story-left,
.story-right,
.mission-left,
.mission-right,
.approach-left,
.approach-right,
.team-left,
.team-right {
    flex: 1;
}

.story-left img,
.mission-right img,
.approach-right img,
.team-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-right,
.mission-left,
.approach-left,
.team-right {
    padding: 3rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-right h2,
.mission-left h2,
.approach-left h2,
.team-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.story-right p,
.mission-left p,
.approach-left p,
.team-right p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 1.2rem;
}

.approach-list {
    padding-left: 1.5rem;
}

.approach-list li {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.approach-list strong {
    color: var(--dark-color);
}

.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--gray-color);
}

.impact-stats {
    background: var(--light-color);
    padding: 4rem 2rem;
}

.impact-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.impact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

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

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1rem;
    color: var(--gray-color);
}

.services-overview {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.overview-text p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.service-curriculum,
.service-includes {
    margin-bottom: 1.5rem;
}

.service-curriculum h4,
.service-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.service-curriculum ul {
    list-style: none;
    padding-left: 0;
}

.service-curriculum li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-color);
}

.service-curriculum li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-includes p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.meta-item strong {
    color: var(--dark-color);
}

.faq-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-split {
    display: flex;
    gap: 3rem;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.faq-item p {
    color: var(--gray-color);
}

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

.contact-left,
.contact-right {
    flex: 1;
    padding: 3rem;
}

.contact-left {
    background: #fff;
}

.contact-right {
    background: var(--light-color);
}

.contact-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-info-block p {
    color: var(--gray-color);
    line-height: 1.8;
}

.contact-info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.info-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.map-placeholder {
    position: relative;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
    border-radius: 4px;
}

.quick-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.quick-item {
    margin-bottom: 1.5rem;
}

.quick-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.quick-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.quick-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.quick-item a:hover {
    text-decoration: underline;
}

.location-details {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.location-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.location-split {
    display: flex;
    gap: 3rem;
}

.location-left,
.location-right {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-left h3,
.location-right h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.location-left p,
.location-right p {
    color: var(--gray-color);
    line-height: 1.8;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

.thanks-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-steps {
    padding-left: 1.5rem;
    text-align: left;
}

.thanks-steps li {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
}

.step-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--gray-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #059669;
}

.thanks-contact {
    color: var(--gray-color);
}

.thanks-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.testimonial-footer {
    background: var(--light-color);
    padding: 3rem 2rem;
}

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

.testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.legal-page {
    background: #fff;
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.legal-intro {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    color: var(--gray-color);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    color: var(--gray-color);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

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

.legal-footer {
    margin-top: 4rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-row,
    .testimonials-split,
    .why-us-split,
    .story-split,
    .mission-split,
    .approach-split,
    .team-split,
    .contact-split,
    .page-hero-split {
        flex-direction: column;
    }

    .service-row.reverse {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .values-grid,
    .impact-grid,
    .faq-split,
    .location-split,
    .thanks-info,
    .next-steps-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}
