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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d7f5f;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d5f3f;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5f3f;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-content {
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.hero-image {
    background-color: #e8ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #3d7f5f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2d5f3f;
    text-decoration: none;
    border: 2px solid #2d5f3f;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image {
    background-color: #e8ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.values-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.featured-split {
    display: flex;
    background-color: #f8f9fa;
}

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

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

.featured-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.featured-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.benefit-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefit-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.featured-image {
    background-color: #e8ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.testimonial-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

blockquote {
    flex: 1;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #2d5f3f;
    border-radius: 4px;
}

blockquote p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    color: #a8b4c0;
}

.enrollment-split {
    display: flex;
    min-height: 600px;
}

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

.enrollment-image {
    background-color: #e8ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.enrollment-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.enrollment-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.enrollment-content > p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.enrollment-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5f3f;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d7f5f;
    transform: translateY(-2px);
}

.info-strip {
    padding: 60px 40px;
    background-color: #ffffff;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.info-item {
    flex: 1;
    text-align: center;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.info-item p {
    font-size: 15px;
    color: #5a6c7d;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #a8b4c0;
}

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

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

.footer-section ul li a {
    color: #a8b4c0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #a8b4c0;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #a8b4c0;
}

.page-hero-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.page-hero-content,
.page-hero-image {
    flex: 1;
}

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

.page-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.page-hero-image {
    background-color: #e8ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.story-split {
    display: flex;
}

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

.story-image {
    background-color: #e8ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.story-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.approach-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.approach-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.approach-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-split {
    display: flex;
}

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

.team-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.team-image {
    background-color: #e8ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.values-detailed {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.values-detailed h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.value-detailed {
    margin-bottom: 50px;
}

.value-detailed:last-child {
    margin-bottom: 0;
}

.value-detailed h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.value-detailed p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

.cta-about {
    padding: 100px 40px;
    background-color: #2d5f3f;
    text-align: center;
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e8ede8;
}

.cta-about-content .cta-primary {
    background-color: #ffffff;
    color: #2d5f3f;
}

.cta-about-content .cta-primary:hover {
    background-color: #f0f0f0;
}

.services-hero {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-hero-content p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.service-card {
    display: flex;
    margin-bottom: 80px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-image {
    background-color: #e8ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.service-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-age {
    font-size: 14px;
    color: #2d5f3f;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #5a6c7d;
}

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

.service-features li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
    font-size: 20px;
}

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

.service-duration {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #3d7f5f;
    transform: translateY(-2px);
}

.services-cta {
    padding: 80px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #ffffff;
}

.services-cta-content p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #a8b4c0;
}

.services-cta-content .cta-primary {
    background-color: #2d5f3f;
}

.contact-hero {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-hero-content p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

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

.contact-info {
    padding: 60px;
    background-color: #ffffff;
}

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

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

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.contact-detail {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-map {
    background-color: #e8ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 6px;
}

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

.contact-cta {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-cta-content p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #5a6c7d;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #5a6c7d;
}

.thanks-info {
    margin-bottom: 50px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.thanks-steps {
    display: flex;
    gap: 30px;
    text-align: left;
}

.thanks-step {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 6px;
}

.thanks-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.thanks-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

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

.thanks-contact p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #5a6c7d;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d7f5f;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2d5f3f;
    text-decoration: none;
    border: 2px solid #2d5f3f;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.legal-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-update {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #5a6c7d;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .featured-split,
    .enrollment-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .service-card,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-content,
    .featured-content,
    .enrollment-content,
    .page-hero-content,
    .story-content,
    .team-content,
    .service-details,
    .contact-info {
        padding: 60px 40px;
    }

    .hero-image,
    .intro-image,
    .featured-image,
    .enrollment-image,
    .page-hero-image,
    .story-image,
    .team-image,
    .service-image,
    .contact-map {
        min-height: 400px;
    }

    .values-container,
    .testimonial-container,
    .info-container,
    .footer-content,
    .thanks-steps {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .intro-content h2,
    .featured-content h2,
    .enrollment-content h2,
    .page-hero-content h1,
    .story-content h2,
    .team-content h2,
    .approach-container h2,
    .values-detailed h2,
    .cta-about-content h2,
    .services-hero-content h1,
    .contact-hero-content h1,
    .thanks-container h1,
    .legal-container h1 {
        font-size: 32px;
    }

    .service-details h2 {
        font-size: 26px;
    }

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

    .nav-container {
        padding: 0 20px;
    }
}
