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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c5b6;
    --dark-color: #0f3443;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --border-color: #e1e8ed;
}

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);
}

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

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

.main-nav {
    background-color: 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: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    background-color: var(--light-bg);
    padding: 6px 14px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background-color: var(--white);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.hero-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

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

.btn-primary-large:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
}

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

.split-container {
    display: flex;
    min-height: 600px;
    background-color: var(--white);
}

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

.split-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

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

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--dark-color);
    font-weight: 700;
}

.split-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.trust-section,
.approach-section {
    padding: 80px 0;
}

.approach-list {
    margin-top: 30px;
}

.approach-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.approach-item:last-child {
    border-bottom: none;
}

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

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

.services-preview {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

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

.service-content {
    padding: 30px;
}

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

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.service-features span {
    font-size: 14px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.service-features span:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

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

.additional-services {
    margin-top: 60px;
}

.additional-services h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

.additional-item {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.additional-item p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.additional-item .price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

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

.testimonial-card {
    flex: 1;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

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

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

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

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

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

.split-form {
    flex: 1;
    background-color: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-benefits {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 100px 0;
    color: var(--white);
}

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

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.9;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

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

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

.disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    max-width: 900px;
    margin: 20px auto 0;
}

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

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

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

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

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie:first-child {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-cookie:first-child:hover {
    background-color: var(--accent-color);
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 0;
}

.philosophy-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

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

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

.philosophy-card {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.team-section {
    padding: 80px 0;
}

.values-section {
    background-color: var(--white);
    padding: 100px 0;
}

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

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

.value-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
}

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

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

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-includes {
    margin: 20px 0;
    padding-left: 24px;
}

.service-includes li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.additional-services-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.services-grid-alt {
    display: flex;
    gap: 40px;
}

.service-alt-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-alt-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-alt-content {
    padding: 30px;
}

.service-alt-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

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

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

.service-alt-content ul li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.process-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.process-steps {
    display: flex;
    gap: 30px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px;
}

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

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

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

.contact-section {
    padding: 60px 0;
}

.contact-info-section {
    margin-top: 40px;
}

.contact-info-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-dark);
}

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

.location-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.location-section > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-details {
    display: flex;
    gap: 40px;
}

.location-card {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.location-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 0;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

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

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

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

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

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

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

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

.thanks-details {
    background-color: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps {
    margin: 60px 0;
}

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

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

.step-item {
    flex: 1;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

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

.thanks-info {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.while-waiting {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.while-waiting h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

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

.waiting-card {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.waiting-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.link-arrow:hover {
    color: var(--dark-color);
}

.legal-page {
    padding: 60px 0 100px;
}

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--dark-color);
}

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

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

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

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

    .services-grid-alt {
        flex-direction: column;
    }

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

    .location-details {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

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

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}