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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --font-size-base: 16px;
}

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

body.font-large {
    --font-size-base: 18px;
}

body.font-small {
    --font-size-base: 14px;
}

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

.primary-nav {
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.brand-logo img {
    border-radius: 8px;
}

.navigation-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

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

.navigation-menu a:hover,
.navigation-menu a.active-link {
    color: var(--primary-color);
}

.font-control-btn {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.font-control-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content-wrapper h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.features-showcase,
.programs-overview,
.daily-picks-section,
.cta-section,
.testimonials-section {
    padding: 80px 20px;
}

.features-showcase {
    background-color: var(--background-light);
}

.features-showcase h2,
.programs-overview h2,
.daily-picks-section h2,
.cta-section h2,
.testimonials-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.feature-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

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

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.program-item {
    background-color: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-item img {
    width: 100%;
    height: auto;
    display: block;
}

.program-item h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.program-item p {
    padding: 0 20px 15px;
    color: var(--text-light);
}

.link-arrow {
    display: inline-block;
    padding: 0 20px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.daily-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.daily-pick-card {
    background-color: var(--background-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.daily-pick-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.daily-pick-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.daily-pick-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.daily-pick-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.cta-section h2 {
    color: white;
}

.cta-section > .container-main > p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.lead-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.lead-form {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.lead-form h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.75rem;
}

.lead-form p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.lead-form button {
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

.company-reg {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0 10px;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.modal-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.courses-catalog {
    padding: 60px 20px;
}

.course-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

.course-image-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.course-info-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.course-level,
.course-duration {
    background-color: var(--background-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.course-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.course-info-section h3 {
    color: var(--text-dark);
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.skills-list {
    list-style: none;
    margin-bottom: 30px;
}

.skills-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.skills-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.course-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pricing-options {
    background-color: var(--background-light);
    padding: 80px 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured-plan {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

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

.lead-capture-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.mentorship-intro,
.community-overview,
.about-mission {
    padding: 60px 20px;
}

.intro-content-split,
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text h2,
.overview-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-text p,
.overview-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    margin-top: 25px;
}

.benefits-list li {
    padding: 8px 0;
    color: var(--text-light);
}

.intro-image img,
.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.mentorship-packages {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

.package-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.package-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.mentorship-process {
    padding: 80px 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
}

.mentor-profiles {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mentor-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mentor-card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.mentor-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mentor-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.success-stories-mentorship {
    padding: 80px 20px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 12px;
}

.story-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.story-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.story-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.mentorship-application {
    padding: 80px 20px;
}

.community-benefits {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.benefit-item p {
    color: var(--text-light);
}

.community-stats {
    padding: 80px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background-color: var(--background-light);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
}

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

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.community-activities {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.activities-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background-color: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.activity-card img {
    width: 100%;
    height: auto;
    display: block;
}

.activity-info {
    padding: 25px;
}

.activity-type {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.activity-info h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.activity-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.activity-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.community-guidelines {
    padding: 80px 20px;
}

.guidelines-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.guidelines-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.guidelines-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.community-testimonials {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.community-join {
    padding: 80px 20px;
}

.blog-featured {
    padding: 60px 20px;
    background-color: var(--background-light);
}

.featured-post {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.featured-post img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.featured-content {
    padding: 20px;
}

.post-category {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.featured-content h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.featured-content h2 a:hover {
    color: var(--primary-color);
}

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

.post-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

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

.read-more-link:hover {
    color: var(--primary-dark);
}

.blog-posts-grid {
    padding: 80px 20px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-card {
    background-color: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-post-card img {
    width: 100%;
    height: auto;
    display: block;
}

.post-card-content {
    padding: 25px;
}

.post-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.post-card-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.post-card-content h3 a:hover {
    color: var(--primary-color);
}

.post-card-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-categories {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.category-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.category-card p {
    color: var(--text-light);
}

.blog-newsletter {
    padding: 80px 20px;
}

.about-values {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.about-team {
    padding: 80px 20px;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.team-member-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member-card h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-stats {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-approach {
    padding: 80px 20px;
}

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

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

.approach-item h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-cta {
    padding: 80px 20px;
    background-color: var(--background-light);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-cta p {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.contact-content {
    padding: 60px 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-text h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-text a:hover {
    color: var(--primary-dark);
}

.contact-hours,
.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 5px;
}

.company-details {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
}

.company-details h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.company-details p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-form-section {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

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

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

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.blog-post-single {
    max-width: 100%;
}

.post-header {
    padding: 60px 20px 40px;
    background-color: var(--background-light);
}

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

.post-date,
.post-read-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-header h1 {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.post-excerpt {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.post-featured-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    padding: 60px 20px;
}

.post-content .container-main {
    max-width: 800px;
}

.post-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.post-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.post-content ul,
.post-content ol {
    margin: 20px 0 20px 25px;
    color: var(--text-light);
    line-height: 1.9;
}

.post-content li {
    margin-bottom: 10px;
}

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

.post-actions {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.mission-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navigation-menu {
        margin-top: 15px;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-section,
    .course-detailed,
    .intro-content-split,
    .overview-content,
    .featured-post,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-content-wrapper h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .programs-grid,
    .features-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper h1 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}