<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
:root {
    --primary-color: #4a6bff;
    --secondary-color: #ff7a5a;
    --accent-color: #ff9a5a;
    --dark-color: #2d3748;
    --text-color: #4a5568;
    --light-color: #f7fafc;
    --gray-color: #e2e8f0;
    --success-color: #48bb78;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --section-spacing: 80px;
    --color-primary: #4169E1;
    --color-primary-light: rgba(65, 105, 225, 0.1);
    --color-primary-rgb: 65, 105, 225;
    --color-secondary: #FF6B6B;
    --color-secondary-light: rgba(255, 107, 107, 0.1);
    --color-dark: #333;
    --color-gray: #666;
    --color-white: #fff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

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

h1, h2, h3, h4 {
    color: var(--dark-color);
    margin-bottom: 0.5em;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin-top: 15px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: var(--section-spacing) 0;
}

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

.btn:hover {
    background-color: #3955d0;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo a:before {
    content: '\f5da';
    font-family: 'Font Awesome 5 Free';
    margin-right: 10px;
    font-size: 1.6rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-color: #f8f9ff;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.highlight {
    display: inline-block;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

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

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    top: -30px;
    right: -30px;
    z-index: -1;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: translateY(-10px);
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 60px 0;
}

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

.intro h2 {
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Approach Section */
.approach .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.approach-image img {
    box-shadow: var(--shadow);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.9rem;
}

/* Services Section */
.services {
    background-color: #f0f5ff;
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .icon {
    background-color: rgba(74, 107, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Support Section */
.support .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.support-list {
    list-style: none;
}

.support-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.support-list li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.support-image img {
    box-shadow: var(--shadow);
}

/* Benefits Section */
.benefits {
    text-align: center;
    background-color: #f0f5ff;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: left;
}

.benefit-card h3 {
    margin-bottom: 20px;
    text-align: center;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.benefit-card ul li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Testimonials Section */
.testimonials {
    text-align: center;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

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

.testimonial-author .name {
    font-weight: 700;
    color: var(--dark-color);
}

.testimonial-author .role {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Trust Section */
.trust .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.trust-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.trust-image img {
    box-shadow: var(--shadow);
}

/* Process Section */
.process {
    background-color: #f0f5ff;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

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

/* Coverage Section */
.coverage .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.coverage-content {
    padding-right: 20px;
}

.coverage-image img {
    box-shadow: var(--shadow);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2, .cta p {
    color: white;
}

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

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

.cta .btn:hover {
    background-color: var(--light-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

footer .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

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

.footer-column ul li i {
    margin-right: 10px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Page Hero */
.page-hero {
    background-color: #f0f5ff;
    padding: 60px 0;
    text-align: center;
}

.page-hero-content h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-intro-content h2 {
    margin-bottom: 1.5rem;
}

.about-intro-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
}

/* Mission &amp; Vision Section */
.mission-vision {
    background-color: #f0f5ff;
    padding: 80px 0;
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-box, .vision-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.mission-box .icon, .vision-box .icon {
    background-color: rgba(74, 107, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-box .icon i, .vision-box .icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.mission-box h3, .vision-box h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mission-box p, .vision-box p {
    font-size: 1.1rem;
    font-style: italic;
}

/* About Navigation Cards */
.about-navigation {
    padding: 80px 0;
    text-align: center;
}

.about-nav-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.about-nav-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-nav-card .icon {
    background-color: rgba(74, 107, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.about-nav-card .icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.about-nav-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.about-nav-card p {
    margin-bottom: 25px;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.about-nav-card:hover .read-more i {
    transform: translateX(5px);
}

/* Team Preview Section */
.team-preview {
    background-color: #f0f5ff;
    padding: 80px 0;
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.team-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-category {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-category:hover {
    transform: translateY(-10px);
}

.team-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.team-category h3 {
    margin: 20px 0 10px;
    padding: 0 20px;
}

.team-category p {
    padding: 0 20px;
    margin-bottom: 25px;
}

.team-category .btn-outline {
    margin: 0 20px 20px;
    display: inline-block;
}

/* Philosophy Page Styles */
.philosophy-intro {
    padding: 80px 0;
}

.philosophy-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.philosophy-content {
    padding-right: 20px;
}

.philosophy-content h2 {
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: -70px;
    top: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    margin-bottom: 0;
}

/* Philosophy Core Values */
.philosophy-core {
    background-color: #f0f5ff;
    padding: 80px 0;
    text-align: center;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
}

.philosophy-card .icon {
    background-color: rgba(74, 107, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.philosophy-card .icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.philosophy-card h3 {
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 1rem;
    text-align: left;
}

/* Philosophy Approach */
.philosophy-approach {
    padding: 80px 0;
}

.philosophy-approach .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.philosophy-approach .approach-image img {
    box-shadow: var(--shadow);
}

.philosophy-approach .approach-content h2 {
    margin-bottom: 1.5rem;
}

.philosophy-approach .approach-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Quotes Section */
.quotes {
    background-color: #f0f5ff;
    padding: 80px 0;
    text-align: center;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quote {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: left;
}

.quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.quote p::before,
.quote p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.quote p::before {
    left: 0;
    top: -10px;
}

.quote p::after {
    right: 0;
    bottom: -10px;
}

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

.quote-author .name {
    font-weight: 700;
    color: var(--dark-color);
}

.quote-author .role {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Values Page Styles */
.values-intro {
    padding: 5rem 0;
}

.values-intro .container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.values-intro-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.values-intro-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.values-detail {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.values-detail h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.value-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

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

.value-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.value-examples {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 1.5rem;
}

.value-examples h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-examples ul {
    padding-left: 1.5rem;
}

.value-examples li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.values-in-action {
    padding: 5rem 0;
}

.values-in-action h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.values-in-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.values-in-action-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.values-in-action-item:hover {
    transform: translateY(-5px);
}

.values-in-action-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.values-in-action-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.values-in-action-item p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.parent-quote {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

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

.big-quote p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.big-quote p::before,
.big-quote p::after {
    content: '"';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
}

.big-quote p::before {
    top: -20px;
    left: -20px;
}

.big-quote p::after {
    bottom: -40px;
    right: -20px;
}

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

.quote-author .name {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.quote-author .role {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive styles for values page */
@media (max-width: 992px) {
    .values-intro .container {
        grid-template-columns: 1fr;
    }
    
    .values-in-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-card {
        grid-template-columns: 60px 1fr;
        padding: 1.5rem;
    }
    
    .value-icon {
        height: 60px;
        width: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .values-in-action-grid {
        grid-template-columns: 1fr;
    }
    
    .big-quote p {
        font-size: 1.2rem;
    }
    
    .big-quote p::before,
    .big-quote p::after {
        font-size: 3rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .approach .container,
    .support .container,
    .trust .container,
    .coverage .container,
    footer .container,
    .about-intro .container,
    .mission-vision .container,
    .about-nav-cards,
    .team-categories,
    .philosophy-intro .container,
    .philosophy-approach .container,
    .quote-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content, 
    .approach-content,
    .support-content,
    .trust-content,
    .coverage-content,
    .about-intro-content,
    .philosophy-content,
    .philosophy-approach .approach-content {
        padding-right: 0;
        text-align: center;
    }
    
    .support-list,
    .trust-list {
        display: inline-block;
        text-align: left;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
    }
    
    .footer-legal a {
        margin: 0 10px;
    }
    
    .team-category {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .timeline {
        margin-top: 60px;
    }
    
    .philosophy-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .quote {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Services Page Styles */
.services-intro {
    padding: 5rem 0;
}

.services-intro .container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.services-intro-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.services-intro-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-overview {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card.highlighted {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.service-card.highlighted:hover {
    transform: scale(1.02) translateY(-5px);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    background: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.service-features li::before {
    content: "\2022";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-approach {
    padding: 5rem 0;
}

.service-approach h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.service-approach p {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.approach-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.approach-pillar {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.approach-pillar:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.approach-pillar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.approach-pillar p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

/* Pricing styles */
.pricing {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

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

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: normal;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: "\2713";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pricing-notes {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
}

/* FAQ Styles */
.faq {
    padding: 5rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Responsive styles for services page */
@media (max-width: 992px) {
    .services-intro .container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.highlighted {
        transform: scale(1);
    }
    
    .service-card.highlighted:hover {
        transform: translateY(-5px);
    }
}

/* Service Detail Page Styles */
.service-detail-intro {
    padding: 5rem 0;
}

.service-detail-intro .container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.service-detail-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-highlight-box {
    background: var(--light-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.service-highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-highlight-box ul {
    padding-left: 1.5rem;
}

.service-highlight-box li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Coaching Process Timeline */
.coaching-process {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.coaching-process h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 4px;
    background: var(--primary-color);
    border-radius: 4px;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.step-content p {
    margin: 0;
    line-height: 1.6;
}

/* Coaching Elements */
.coaching-elements {
    padding: 5rem 0;
}

.coaching-elements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.element-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.element-card:hover {
    transform: translateY(-5px);
}

.element-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    background: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.element-card p {
    margin: 0;
    line-height: 1.6;
}

/* Service Testimonials */
.service-testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.service-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-slide {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding: 0 0.5rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

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

.author-info .name {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.author-info .relation {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Service Options */
.service-options {
    padding: 5rem 0;
}

.service-options h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    padding: 2rem;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card.highlighted {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.option-card.highlighted:hover {
    transform: scale(1.02) translateY(-5px);
}

.option-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.option-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.option-duration {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.option-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.option-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.option-features li::before {
    content: "\2713";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.option-price {
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.option-card .btn {
    display: block;
    text-align: center;
}

.options-note {
    margin-top: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
}

/* Coaching FAQs */
.coaching-faqs {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.coaching-faqs h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

/* Responsive styles for service detail page */
@media (max-width: 992px) {
    .service-detail-intro .container {
        grid-template-columns: 1fr;
    }
    
    .elements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .option-card.highlighted {
        transform: scale(1);
    }
    
    .option-card.highlighted:hover {
        transform: translateY(-5px);
    }
    
    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-slide {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .elements-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Team Page Styles */
.team-intro {
    padding: 5rem 0;
}

.team-intro .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-intro-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.team-intro-content h2:after {
    margin-left: 0;
}

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

.team-intro-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.team-intro-image:hover img {
    transform: translateY(-10px);
}

/* Team Categories and Tabs */
.team-categories {
    padding: 5rem 0;
    background-color: var(--color-light);
}

.team-categories h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-gray);
    font-size: 1.1rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
}

.category-tab {
    padding: 12px 25px;
    background-color: var(--color-white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--color-gray);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.category-tab:hover {
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.3);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-member {
    background-color: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.08);
}

.member-info {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: var(--color-primary);
}

.member-role {
    display: block;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.member-description {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.member-contact {
    margin-top: auto;
}

.member-contact a {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.member-contact a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.member-contact a i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .team-intro .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-intro-content h2 {
        text-align: center;
    }
    
    .team-intro-content h2:after {
        margin: 15px auto 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .category-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .member-image {
        height: 250px;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .category-tab {
        width: 100%;
        max-width: 300px;
    }
}

/* Leadership Section */
.team-leadership {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.team-leadership h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.leadership-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.leadership-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leadership-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.leadership-role {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.leadership-bio {
    margin-bottom: 2rem;
}

.leadership-bio p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.leadership-qualifications h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.leadership-qualifications ul {
    padding-left: 1.5rem;
}

.leadership-qualifications li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Team Quote */
.team-quote {
    background-color: var(--color-primary);
    padding: 5rem 0;
    color: white;
}

.big-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.big-quote p {
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    color: white;
    position: relative;
    z-index: 1;
}

.big-quote p::before,
.big-quote p::after {
    content: '"';
    font-size: 6rem;
    line-height: 0;
    position: absolute;
    opacity: 0.2;
}

.big-quote p::before {
    left: -20px;
    top: 30px;
}

.big-quote p::after {
    right: -20px;
    bottom: 0px;
}

/* Join Team Section */
.team-join {
    padding: 5rem 0;
}

.team-join .container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.join-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.join-content p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.join-content h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.3rem;
}

.job-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.job-list li {
    padding: 1rem;
    background: var(--light-color);
    margin-bottom: 1rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.job-title {
    font-weight: bold;
    color: var(--primary-color);
}

.job-details {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.join-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Contact Page Styles */
.contact-intro {
    padding: 5rem 0 3rem;
}

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

.contact-details {
    padding: 2rem 0 4rem;
    background-color: var(--color-light);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info a {
    display: inline-block;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Locations Styles */
.locations {
    padding: 5rem 0;
}

.locations h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.locations .section-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-gray);
    font-size: 1.2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.location-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 2rem;
}

.location-info h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--color-primary);
}

.location-info address {
    font-style: normal;
    margin-bottom: 1.2rem;
    color: var(--color-dark);
    line-height: 1.6;
}

.location-directions {
    margin: 1.5rem 0;
}

.location-directions p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.location-directions i {
    color: var(--color-primary);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

/* Online Support Styles */
.online-support {
    padding: 5rem 0;
    background-color: var(--color-light);
}

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

.online-support h2 {
    margin-bottom: 1.5rem;
}

.online-support &gt; p {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.online-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.online-benefit {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    background-color: var(--color-secondary-light);
    color: var(--color-secondary);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.6rem;
}

.online-benefit h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.online-benefit p {
    color: var(--color-gray);
    line-height: 1.6;
}

.online-support .btn {
    margin-top: 2rem;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 5rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-privacy {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-align: center;
    margin-top: 1.5rem;
}

.form-privacy a {
    color: var(--color-primary);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .online-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .online-benefits {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Additional Contact Form Styles */
.small-hero {
    padding: 4rem 0;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: normal;
}

.form-control.error {
    border-color: #e53935;
    background-color: rgba(229, 57, 53, 0.05);
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.form-success h2 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.form-success p {
    margin-bottom: 1rem;
    color: var(--color-gray);
}

.form-success .form-actions {
    margin-top: 2rem;
}

/* Contact Help Section */
.contact-help {
    background-color: var(--color-light);
    padding: 4rem 0;
    margin-top: 3rem;
}

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

.help-content h2 {
    margin-bottom: 1.5rem;
}

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

.help-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.help-option i {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.help-option p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--color-dark);
}

.help-option a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.help-option a:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.9rem;
    margin-top: 2rem;
    color: var(--color-gray);
}

@media (max-width: 768px) {
    .help-options {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .help-option {
        justify-content: center;
    }
} </pre></body></html>