/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background-color: #1e40af;
    color: white;
    border-color: #1e40af;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #3b82f6;
    border-color: #1e40af;
}

.btn-secondary:hover {
    background-color: #1e40af;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #374151;
    border-color: #d1d5db;
}

.btn-outline:hover {
    background-color: #374151;
    color: white;
    border-color: #374151;
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 2rem;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-info i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a {
    color: white;
    text-decoration: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

.top-bar-social a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Header Container - New Overlapping Design */
.header-container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: #1e40af;
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: none;
    width: 100%;
    padding: 0 40px;
}

.top-bar-info {
    display: flex;
    gap: 2rem;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-info i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a {
    color: white;
    text-decoration: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

.top-bar-social a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Overlapping Logo */
.logo-overlay {
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-circle {
    width: 150px;
    height: 150px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(61, 22, 174, 0.15);
    border: 2px solid rgba(248, 249, 250, 0.9);
    position: relative;
    top: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Fallback for icon if image doesn't load */
.logo-circle i {
    font-size: 2.5rem;
    color: #1e40af;
    font-weight: 300;
    display: none; /* Hidden when image is used */
}

/* Logo text removed - only logo image remains */

/* Main Header */
.header {
    position: relative;
    background: transparent;
    overflow: hidden;
    margin-top: 0;
    width: 100%;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #1e40af;
    z-index: -1;
}

/* Wave effects removed for cleaner design */

.navbar {
    padding: 1rem 0;
    position: relative;
    z-index: 10;
    background: #1e40af;
}

.nav-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Navigation Menus */
.nav-left, .nav-right {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-left {
    flex: 1;
    justify-content: flex-end;
    margin-right: 2rem;
}

.nav-right {
    flex: 1;
    justify-content: flex-start;
    margin-left: 2rem;
}

.nav-logo-space {
    width: 120px; /* Logo için boş alan */
    height: 60px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: #e0e7ff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 40;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: opacity 0.2s ease;
    border-radius: 2px;
}

/* Custom Beautiful Slider */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slides-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 60%, rgba(132,219,95,0.15) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 60px;
    background: linear-gradient(transparent, rgba(132,219,95,0.2));
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    max-width: 1200px;
    animation: slideInUp 1s ease-out 0.5s both;
    text-align: center;
}

.slide-subtitle {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    text-align: center;
}

.slide-description {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0 auto 2rem auto;
    text-align: center;
}

/* Slider Quote Style */
.slide-quote {
    font-size: 2.2rem;
    color: white;
    font-style: italic;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    text-align: center;
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.slide-author {
    display: block;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.slide-cta {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slide-cta:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

/* Beautiful Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #3b82f6;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

/* Beautiful Pagination */
.pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    opacity: 0;
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.dot.active::before {
    opacity: 1;
    background: #1e40af;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Slide Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Custom Slider */
@media (max-width: 768px) {
    .slide-content {
        padding: 60px 30px 40px;
    }
    
    .slide-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .slide-quote {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-author {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-btn {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
    
    .pagination {
        bottom: 30px;
        gap: 12px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 40px 20px 30px;
    }
    
    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .slide-description {
        font-size: 1rem;
    line-height: 1.5;
}
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .pagination {
        bottom: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot::before {
        width: 4px;
        height: 4px;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 40px;
    }
    
    .hero-content {
        gap: 80px;
    }
    
    .hero-image {
        flex: 0 0 350px;
    }
    
    .image-frame {
        width: 350px;
        height: 450px;
    }
    
    .hero-quote {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-container {
        padding: 0 30px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .hero-image {
        flex: none;
    }
    
    .image-frame {
        width: 300px;
        height: 380px;
    }
    
    .hero-quote {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .image-frame {
        width: 280px;
        height: 350px;
    }
    
    .hero-quote {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-author {
        font-size: 1rem;
    }
    
    .hero-title-desc {
        font-size: 0.9rem;
    }
}




/* Background Layer */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 50%, #f8f9fa 100%);
    z-index: 1;
}

.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(61, 22, 174, 0.05);
    animation: float-slow 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 70%;
    animation-delay: 14s;
}

/* Middle Layer */
.parallax-middle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(132, 219, 95, 0.2);
    border: 2px solid rgba(132, 219, 95, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #84db5f;
    font-size: 1.5rem;
    animation: float-medium 8s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(132, 219, 95, 0.2);
}

.item-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.item-2 {
    top: 25%;
    right: 20%;
    animation-delay: 2s;
}

.item-3 {
    top: 70%;
    left: 20%;
    animation-delay: 4s;
}

.item-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 6s;
}

.item-5 {
    top: 50%;
    left: 80%;
    animation-delay: 8s;
}

.item-6 {
    top: 35%;
    left: 5%;
    animation-delay: 1s;
}

.item-7 {
    bottom: 30%;
    left: 60%;
    animation-delay: 3s;
}

.item-8 {
    top: 80%;
    right: 25%;
    animation-delay: 5s;
}

/* Front Layer */
.parallax-front {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 120px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

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

.hero-content {
    max-width: 1200px;
    text-align: left;
}

/* Content Section */
.hero-content-section {
    margin-bottom: 3rem;
}

/* Hero Content Elements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

.hero-quote {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-subquote {
    font-size: 1.3rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* Profile Section */
.hero-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(61, 22, 174, 0.1);
    border-bottom: 1px solid rgba(61, 22, 174, 0.1);
}

.profile-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(61, 22, 174, 0.2);
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.2);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(61, 22, 174, 0.1);
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
}

.profile-info {
    text-align: left;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0 0 0.3rem 0;
}

.profile-title {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 22, 174, 0.4);
}

.btn-secondary {
    background: rgba(132, 219, 95, 0.1);
    color: #84db5f;
    border-color: #84db5f;
}

.btn-secondary:hover {
    background: #84db5f;
    color: white;
    transform: translateY(-2px);
}

/* Hero Header */
.hero-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 400;
}

/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(61, 22, 174, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(61, 22, 174, 0.2);
    border-color: rgba(61, 22, 174, 0.3);
}

.hero-card:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}

/* Card Icons */
.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

/* Card Quote Styles */
.card-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #2d3748;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-author {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 600;
    font-style: normal;
}

/* Card Photo Styles */
.card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(61, 22, 174, 0.2);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(61, 22, 174, 0.1);
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 2rem;
}

.card-description {
    font-size: 1rem;
    color: #4a5568;
    text-align: center;
}

/* Card Info Styles */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2d3748;
}

.info-list i {
    color: #84db5f;
    font-size: 0.9rem;
}

.age-groups {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.age-tag {
    background: rgba(61, 22, 174, 0.1);
    color: #3b82f6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Card Overlays */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 22, 174, 0.95), rgba(132, 219, 95, 0.95));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.card-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #3b82f6;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.scroll-down:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.2);
}

/* Modern Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 300;
    color: #1a202c;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

/* Modern Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    padding: 16px 24px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26, 32, 44, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1a202c;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(26, 32, 44, 0.6);
    transform: scale(1.1);
}

/* Mobile Responsive for Creative Slider */
@media (max-width: 768px) {
    .slide-content {
        bottom: 40px;
        right: 20px;
        left: 20px;
        max-width: none;
        transform: skewY(-1deg);
        text-align: center;
    }
    
    .quote-slide {
        bottom: 50px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .main-quote {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .main-quote::before {
        font-size: 4rem;
        top: -20px;
        left: -20px;
    }
    
    .main-quote::after {
        font-size: 4rem;
        bottom: -30px;
        right: -20px;
    }
    
    .quote-author {
        font-size: 1.3rem;
        letter-spacing: 0.05em;
    }
    
    .quote-author::before {
        width: 80px;
        height: 2px;
    }
    
    .slide-content::before {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 4px;
        top: -15px;
        background: linear-gradient(90deg, transparent 0%, #ff6b6b 20%, #4ecdc4 50%, #45b7d1 80%, transparent 100%);
    }
    
    .slide-content::after {
        border-radius: 20px;
    }
    
    .slide-title {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        padding-left: 0;
        text-align: center;
    }
    
    .slide-description::before {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
        font-size: 3rem;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
    
    .dots-container {
        bottom: 20px;
        padding: 12px 20px;
        gap: 12px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    .slide-content {
        bottom: 30px;
        right: 15px;
        left: 15px;
        transform: skewY(0deg);
    }
    
    .quote-slide {
        bottom: 40px;
        right: 10px;
        left: 10px;
    }
    
    .main-quote {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }
    
    .main-quote::before {
        font-size: 3rem;
        top: -15px;
        left: -15px;
    }
    
    .main-quote::after {
        font-size: 3rem;
        bottom: -25px;
        right: -15px;
    }
    
    .quote-author {
        font-size: 1.1rem;
        letter-spacing: 0.03em;
    }
    
    .quote-author::before {
        width: 60px;
        height: 2px;
    }
    
    .slide-content::before {
        width: 90%;
        height: 3px;
        top: -10px;
    }
    
    .slide-title {
        font-size: 2rem;
        line-height: 0.9;
        margin-bottom: 0.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .slide-description::before {
        font-size: 2.5rem;
        top: -15px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .dots-container {
        bottom: 15px;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Content Section - Center */
.hero-content-section {
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

.hero-main-quote {
    font-size: 3rem;
    font-weight: 600;
    font-style: italic;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 0;
    position: relative;
    letter-spacing: -0.02em;
    font-family: 'Georgia', serif;
}

.hero-main-quote::before {
    content: '"';
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.2;
    position: absolute;
    top: -0.8rem;
    left: -2rem;
    font-family: Georgia, serif;
    font-weight: 400;
}

.hero-author-info {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(61, 22, 174, 0.1);
    border-bottom: 1px solid rgba(61, 22, 174, 0.1);
}

.author-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.author-title {
    display: block;
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Actions Section */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 22, 174, 0.4);
}

.btn-secondary {
    background: rgba(132, 219, 95, 0.1);
    color: #84db5f;
    border-color: #84db5f;
}

.btn-secondary:hover {
    background: #84db5f;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border-color: #1e40af;
}

.btn-outline:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
}

/* Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Geometric Shapes */
.decoration-shape {
    position: absolute;
    background: rgba(61, 22, 174, 0.03);
    border: 1px solid rgba(61, 22, 174, 0.08);
}

.shape-1 {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    top: 15%;
    left: 8%;
    transform: rotate(15deg);
    animation: float-slow 12s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 70%;
    left: 12%;
    animation: float-slow 10s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    top: 25%;
    right: 15%;
    transform: rotate(-20deg);
    animation: float-slow 8s ease-in-out infinite;
    animation-delay: 4s;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(132, 219, 95, 0.1);
    border: 1px solid rgba(132, 219, 95, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(132, 219, 95, 0.6);
    font-size: 0.9rem;
    animation: float-gentle 6s ease-in-out infinite;
}

.icon-1 {
    top: 35%;
    left: 5%;
    animation-delay: 0s;
}

.icon-2 {
    top: 55%;
    right: 8%;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 25%;
    right: 20%;
    animation-delay: 4s;
}

/* Accent Lines */
.accent-line {
    position: absolute;
    background: linear-gradient(45deg, rgba(61, 22, 174, 0.1), transparent);
    border-radius: 2px;
}

.line-1 {
    width: 100px;
    height: 2px;
    top: 45%;
    left: 3%;
    transform: rotate(25deg);
    animation: fade-pulse 8s ease-in-out infinite;
}

.line-2 {
    width: 60px;
    height: 2px;
    bottom: 35%;
    right: 5%;
    transform: rotate(-35deg);
    animation: fade-pulse 8s ease-in-out infinite;
    animation-delay: 4s;
}

/* Animations */
@keyframes pulse-ring {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.15; 
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.05; 
    }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes fade-pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes colorPulse {
    0%, 100% { 
        opacity: 0.7;
        transform: scaleY(1) scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleY(1.2) scaleX(1.1);
    }
}

@keyframes colorFlow {
    0% { 
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
    100% { 
        background-position: 0% 0%;
    }
}

@keyframes titleGlow {
    0% { 
        text-shadow: 3px 3px 0px #000, 6px 6px 0px rgba(0,0,0,0.4), 0 0 30px rgba(255,255,255,0.3);
    }
    100% { 
        text-shadow: 3px 3px 0px #000, 6px 6px 0px rgba(0,0,0,0.4), 0 0 50px rgba(255,107,107,0.8), 0 0 70px rgba(78,205,196,0.4);
    }
}

@keyframes titleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-3px) rotate(0.5deg);
    }
}

@keyframes strokeShift {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(4px, -4px) scale(1.02);
        opacity: 0.8;
    }
}

@keyframes mouseFollowGlow {
    0% {
        box-shadow: 0 0 20px rgba(255,107,107,0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(78,205,196,0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(69,183,209,0.4);
    }
}

@keyframes quoteGlow {
    0% {
        text-shadow: 0 0 20px rgba(255,107,107,0.5);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 40px rgba(255,107,107,0.8), 0 0 60px rgba(78,205,196,0.4);
        transform: scale(1.05);
    }
}

@keyframes authorPulse {
    0%, 100% {
        opacity: 0.9;
        transform: translateY(0px);
    }
    50% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@keyframes lineExpand {
    0% {
        width: 50px;
        opacity: 0.6;
    }
    100% {
        width: 150px;
        opacity: 1;
    }
}

.hero-image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(61, 22, 174, 0.1);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #3b82f6;
    font-size: 3rem;
    gap: 1rem;
}

/* Hero Content Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 22, 174, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border-color: #1e40af;
}

.btn-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
}

.hero-author {
    border-top: 1px solid rgba(61, 22, 174, 0.1);
    padding-top: 2rem;
}

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

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
}

.author-title {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(61, 22, 174, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.overlay-pattern {
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, #3b82f6 2px, transparent 0);
    background-size: 40px 40px;
}

/* Scroll Down Arrow - Split Screen */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #3b82f6;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.scroll-down:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.2);
}

/* Quote Card - Enhanced Minimal */
.quote-card {
    max-width: 1200px;
    width: 700px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(61, 22, 174, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.quote-content blockquote {
    font-size: 2rem;
    font-style: italic;
    color: #2d3748;
    line-height: 1.5;
    margin: 0 0 2rem 0;
    text-align: left;
    font-weight: 400;
    position: relative;
    padding-left: 0.5rem;
}

.quote-content blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #3b82f6;
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote-content cite {
    display: block;
    text-align: left;
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 600;
    font-style: normal;
}

/* Profile Card - Enhanced Minimal */
.profile-card {
    position: relative;
}

.profile-image-container {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(61, 22, 174, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(61, 22, 174, 0.2);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.profile-image-container:hover .profile-img {
    transform: scale(1.02);
}

.profile-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.9);
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 3rem;
}


/* Scroll Down Arrow - Enhanced */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #3b82f6;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.scroll-down:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.2);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-highlight {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(61, 22, 174, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(61, 22, 174, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border-color: #1e40af;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(61, 22, 174, 0.3);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-illustration-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-profile-container {
    position: relative;
    z-index: 10;
}

.profile-circle {
    width: 300px;
    height: 300px;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(61, 22, 174, 0.2);
    box-shadow: 0 8px 32px rgba(61, 22, 174, 0.15);
    padding: 20px;
    position: relative;
}

.profile-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(61, 22, 174, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.floating-element:hover {
    transform: scale(1.1);
}

.floating-element i {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 300;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.element-2 {
    top: 10%;
    right: 20%;
    animation: float2 8s ease-in-out infinite;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation: float3 7s ease-in-out infinite;
}

.element-4 {
    bottom: 15%;
    right: 10%;
    animation: float4 9s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(180deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-35px) rotate(-180deg); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(61, 22, 174, 0.2);
}

.scroll-arrow i {
    color: #3b82f6;
    font-size: 1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Hero Quote Styles - Updated */
.hero-quote {
    margin-bottom: 0;
    text-align: center;
    padding: 2.5rem;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(61, 22, 174, 0.2);
    box-shadow: 0 8px 32px rgba(61, 22, 174, 0.15);
    position: relative;
    height: fit-content;
}

.hero-quote blockquote {
    font-size: 2rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    font-weight: 500;
}

.hero-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #3b82f6;
    position: absolute;
    left: -30px;
    top: -20px;
    opacity: 0.3;
    font-weight: 700;
}

.hero-quote cite {
    font-size: 1.2rem;
    color: #3b82f6;
    font-weight: 700;
    display: block;
    text-align: center;
}

/* Introduction Section */
.intro {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

/* New Intro Layout */
.intro-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    text-align: left;
}

.intro-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-illustration {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #16a34a, #84db5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
}

.intro-illustration:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(22, 163, 74, 0.4);
}

.intro-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.intro-illustration:hover .intro-logo {
    transform: scale(1.1);
}

/* Interactive Question Marks */
.question-marks {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
}

.question-mark {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #3b82f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.question-mark.main {
    top: -10px;
    right: -10px;
    opacity: 0.8;
    z-index: 3;
    animation: mainPulse 3s ease-in-out infinite;
}

.question-mark.extra {
    opacity: 0.6;
    transform: scale(1);
}

.extra-1 {
    top: -5px;
    right: -35px;
    animation: floatRight 4s ease-in-out infinite;
}

.extra-2 {
    top: -30px;
    right: -5px;
    animation: floatUp 4s ease-in-out infinite 1s;
}

/* Continuous Animations */
@keyframes mainPulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.1); 
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    }
}

@keyframes floatRight {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateX(-3px) scale(0.95); 
    }
    50% { 
        opacity: 0.8; 
        transform: translateX(2px) scale(1.05); 
    }
}

@keyframes floatUp {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateY(-2px) scale(0.95); 
    }
    50% { 
        opacity: 0.8; 
        transform: translateY(2px) scale(1.05); 
    }
}

/* Mobile Responsive for Intro Layout */
@media (max-width: 768px) {
    .intro-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text {
        text-align: center;
    }
    
    .intro-illustration {
        width: 180px;
        height: 180px;
    }
    
    .intro-logo {
        width: 140px;
        height: 140px;
    }
    
    .question-marks {
        width: 40px;
        height: 40px;
    }
    
    .question-mark {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
    
    .question-mark.main {
        top: -8px;
        right: -8px;
    }
    
    .extra-1 {
        top: -4px;
        right: -28px;
    }
    
    .extra-2 {
        top: -24px;
        right: -4px;
    }
}

.intro-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0;
}

/* New Intro Styling */
.intro-quote {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #1e40af;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-align: left;
}

.intro-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2d3748;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.intro-quote cite {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 600;
}

.intro-text {
    margin-top: 2rem;
}

.intro-lead {
    font-size: 1.3rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(61, 22, 174, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-point:hover {
    background: rgba(61, 22, 174, 0.1);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.highlight-point span:last-child {
    font-size: 1.1rem;
    color: #4a5568;
}

/* Mobile Responsive for New Intro */
@media (max-width: 768px) {
    .intro-quote {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .intro-quote blockquote {
        font-size: 1.2rem;
    }
    
    .intro-lead {
        font-size: 1.1rem;
    }
    
    .highlight-point {
        padding: 0.8rem;
    }
    
    .highlight-icon {
        font-size: 1.3rem;
    }
    
    .highlight-point span:last-child {
        font-size: 1rem;
    }
}

/* Highlights Section */
.highlights {
    padding: 80px 0;
    background-color: #f8fafc;
}

.principles-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    min-height: 500px;
}

.principles-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-right: 2rem;
}

.principle-item {
    padding: 1.5rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-left: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.principle-item:hover {
    border-left-color: #1e40af;
}

.principle-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.principle-item-icon {
    width: 50px;
    height: 50px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.principle-item-icon i {
    font-size: 1.5rem;
    color: #84db5f;
    font-weight: 300;
}

.principle-item .principle-title {
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0;
    font-weight: 600;
}

.principle-item .principle-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.principles-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 2rem;
}

.principles-circles {
    position: relative;
    width: 400px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.principle-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    z-index: 10;
}

.principle-circle:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    border-color: #1e40af;
}

.principle-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.principle-right {
    bottom: 0;
    right: 0;
}

.principle-left {
    bottom: 0;
    left: 0;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.principle-icon i {
    font-size: 1.5rem;
    color: #84db5f;
    font-weight: 300;
}

.principle-circle .principle-title {
    font-size: 0.9rem;
    color: #1f2937;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

/* Chain Connection */
.chain-connection {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

/* Learn with Purpose → Teach with Meaning */
.chain-1 {
    top: 50%;
    left: 68%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Transform Together → Teach with Meaning */
.chain-2 {
    top: 83%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Transform Together → Learn with Purpose */
.chain-3 {
    top: 50%;
    left: 32%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.chain-link {
    width: 12px;
    height: 12px;
    background: #1e40af;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    animation: chain-pulse 2s ease-in-out infinite;
}

.chain-link:nth-child(1) {
    animation-delay: 0s;
}

.chain-link:nth-child(2) {
    animation-delay: 0.2s;
}

.chain-link:nth-child(3) {
    animation-delay: 0.4s;
}

.chain-link:nth-child(4) {
    animation-delay: 0.6s;
}

.chain-link:nth-child(5) {
    animation-delay: 0.8s;
}

.chain-link:nth-child(6) {
    animation-delay: 1s;
}

.chain-link:nth-child(7) {
    animation-delay: 1.2s;
}

.chain-link:nth-child(8) {
    animation-delay: 1.4s;
}

.chain-link:nth-child(9) {
    animation-delay: 1.6s;
}

.chain-link:nth-child(10) {
    animation-delay: 1.8s;
}

.chain-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: #1e40af;
    border-radius: 1px;
}

.chain-link:first-child::before {
    display: none;
}

@keyframes chain-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .principles-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .principles-left {
        order: 2;
        gap: 2rem;
    }
    
    .principles-right {
        order: 1;
    }
    
    .principles-circles {
        width: 100%;
        height: 200px;
    }
    
    .principle-circle {
        position: static;
        width: 100px;
        height: 100px;
        transform: none !important;
        margin: 0.5rem;
    }
    
    .arrow {
        display: none;
    }
    
    .principle-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.3rem;
    }
    
    .principle-icon i {
    font-size: 1rem;
    }
    
    .principle-circle .principle-title {
        font-size: 0.8rem;
    }
    
    .principle-item {
        padding: 1.5rem;
    }
    
    .principle-item .principle-title {
        font-size: 1.3rem;
    }
    
    .principle-item .principle-description {
        font-size: 0.9rem;
    }
}

/* Age Groups Section */
.age-groups {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.age-group-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
    border-left: 4px solid #84db5f;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.age-group-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.age-group-icon {
    width: 80px;
    height: 80px;
    background-color: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.age-group-icon .age-group-range {
    font-size: 1.2rem;
    font-weight: 700;
    color: #84db5f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.age-group-header {
    margin-bottom: 1.5rem;
}

.age-group-title {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 0;
    font-weight: 600;
}

.age-group-description {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.age-group-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.age-group-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.age-group-link:hover {
    color: #2563eb;
}

.age-group-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.age-group-link:hover i {
    transform: translateX(3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 1200px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.feature-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #3b82f6;
    font-weight: 300;
}

.feature-title {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background-color: #f8fafc;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.course-image {
    height: 200px;
    background-color: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-image i {
    font-size: 4rem;
    color: #3b82f6;
    font-weight: 300;
}

.course-content {
    padding: 2rem;
}

.course-title {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.course-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.course-duration {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-level {
    background-color: #f3e8ff;
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-illustration {
    width: 250px;
    height: 250px;
    background-color: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration i {
    font-size: 6rem;
    color: #f59e0b;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    font-weight: 300;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: #f8fafc;
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background: white;
}

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

/* Blog Card Styles */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #3b82f6;
}

/* Blog Image Container */
.blog-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) contrast(1.08) saturate(1.15);
    border-radius: 0;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
    filter: brightness(1.02) contrast(1.12) saturate(1.25);
}

.image-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.loading-icon {
    font-size: 2rem;
    color: #cbd5e1;
    animation: pulse 2s infinite;
}

.image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .image-gradient {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.blog-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.reading-time {
    background: rgba(255,255,255,0.95);
    color: #374151;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.reading-time i {
    color: #3b82f6;
    font-size: 0.8rem;
}

/* Blog Content */
.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-header {
    margin-bottom: 1rem;
}

.blog-title {
    margin: 0;
    line-height: 1.3;
}

.blog-title a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.blog-title a:hover {
    color: #3b82f6;
}

.blog-excerpt-container {
    flex: 1;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Footer */
.blog-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.blog-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.blog-author i {
    color: #3b82f6;
    font-size: 0.8rem;
}

.blog-read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #2563eb;
}

.blog-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* No Posts State */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.no-posts-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.no-posts h3 {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.no-posts p {
    font-size: 1rem;
    margin: 0;
}

.blog-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #84db5f;
}

/* Blog Responsive */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .age-groups-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 60px 0;
    }
    
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .age-groups-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin: 0 1rem;
    }
    
    .blog-image-container {
        aspect-ratio: 4/3;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title a {
        font-size: 1.2rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        -webkit-line-clamp: 5;
    }
    
    .blog-meta-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .blog-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-grid {
        gap: 1.5rem;
    }
    
    .blog-card {
        margin: 0 0.5rem;
    }
    
    .blog-image-container {
        aspect-ratio: 4/3;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-title a {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 4;
    }
    
    .blog-author {
        font-size: 0.8rem;
    }
    
    .reading-time {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .blog-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* About Page Styles */
.about-nav {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.about-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.about-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
}

.about-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #84db5f;
    color: #84db5f;
}

.about-nav-item i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #84db5f;
}

.about-nav-item span {
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: white;
}

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.founder-content {
    max-width: none;
    margin: 0;
}

.founder-image {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.founder-photo {
    width: 280px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 3px solid #f8fafc;
}

.founder-image .founder-signature {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 280px;
    width: 100%;
}

.founder-image .founder-signature p {
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.3;
}

.founder-image .founder-signature strong {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.bio-link-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1e40af;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.8rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #1e40af;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: transparent;
}

.bio-link-minimal:hover {
    background: #1e40af;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.bio-link-minimal i {
    font-size: 0.8rem;
}

.founder-quote {
    background: linear-gradient(135deg, #f0fdf4, #e0f2fe);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #84db5f;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.founder-story, .founder-vision {
    margin: 2rem 0;
    line-height: 1.7;
    color: #4b5563;
}

.founder-signature {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.founder-signature p {
    margin: 0;
    font-size: 1.1rem;
}

/* What is Section */
.what-is-section {
    padding: 80px 0;
    background: #f8fafc;
}

.what-is-content {
    max-width: 1240px;
    margin: 0 auto;
}

.what-is-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
    text-align: center;
}

.what-is-points {
    display: grid;
    gap: 1.5rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.point-item i {
    color: #84db5f;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.point-item p {
    margin: 0;
    line-height: 1.6;
    color: #4b5563;
}

/* Why Matters Section */
.why-matters-section {
    padding: 80px 0;
    background: white;
}

.why-matters-content {
    max-width: 1240px;
    margin: 0 auto;
}

.why-matters-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 3rem;
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.problem-item i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.problem-item p {
    margin: 0;
    line-height: 1.6;
    color: #7f1d1d;
}

.solution {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #84db5f;
}

.solution h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.solution-points {
    display: grid;
    gap: 1rem;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solution-item i {
    color: #84db5f;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.solution-item p {
    margin: 0;
    line-height: 1.6;
    color: #4b5563;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.mission-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.mission-text h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-text p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

/* Gap Section */
.gap-section {
    padding: 80px 0;
    background: white;
}

.gap-content {
    max-width: 1240px;
    margin: 0 auto;
}

.gap-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0;
}

.exam-driven, .meaning-driven {
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exam-driven:hover, .meaning-driven:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.exam-driven {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border: 2px solid #f87171;
    position: relative;
}

.exam-driven::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #f87171);
    border-radius: 16px 16px 0 0;
}

.meaning-driven {
    background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
    border: 2px solid #4ade80;
    position: relative;
}

.meaning-driven::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #4ade80);
    border-radius: 16px 16px 0 0;
}

.exam-driven h3, .meaning-driven h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.exam-driven h3 {
    color: #dc2626;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.1);
}

.meaning-driven h3 {
    color: #16a34a;
    text-shadow: 0 2px 4px rgba(22, 163, 74, 0.1);
}

.exam-driven p, .meaning-driven p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    text-align: justify;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    position: relative;
}

.vs-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, #1e40af, #e5e7eb, transparent);
    transform: translateY(-50%);
}

.vs-divider span {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(76, 29, 149, 0.3);
    border: 3px solid white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.gap-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.gap-point {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gap-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.gap-point h4 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.gap-point ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gap-point li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.gap-point li:last-child {
    border-bottom: none;
}

.gap-point li::before {
    content: '•';
    color: #6b7280;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.8rem;
}


.gap-point i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.gap-point.negative i {
    color: #ef4444;
}

.gap-point.positive i {
    color: #84db5f;
}

.gap-point p {
    margin: 0;
    line-height: 1.6;
}

.gap-point.negative p {
    color: #7f1d1d;
}

.gap-point.positive p {
    color: #166534;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .about-nav-item {
        padding: 1rem;
    }
    
    .founder-quote {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .mission-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-icon {
        margin: 0 auto;
    }
    
    .gap-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .gap-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    .vs-divider span {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Approach Page Styles */
.approach-nav {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.approach-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.approach-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
}

.approach-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #84db5f;
    color: #84db5f;
}

.approach-nav-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #84db5f;
}

.approach-nav-item span {
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
}

/* Educator Role Section */
.educator-role-section {
    padding: 80px 0;
    background: white;
}

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

.educator-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.educator-text p:last-child {
    margin-bottom: 0;
}

/* Learning Environments Section */
.learning-environments-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.environment-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 3rem;
    text-align: center;
}

.environment-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.principle-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.principle-content h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.principle-content p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.environment-outcome {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #84db5f;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Learning Dynamics Section */
.learning-dynamics-section {
    padding: 80px 0;
    background: white;
}

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

.dynamics-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 3rem;
    text-align: center;
}

.dynamics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dynamics-item {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.dynamics-item.motivations {
    background: #f0fdf4;
    border-left: 4px solid #84db5f;
}

.dynamics-item.blocks {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.dynamics-item.transformation {
    background: #e0f2fe;
    border-left: 4px solid #2563eb;
}

.dynamics-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dynamics-header i {
    font-size: 1.5rem;
}

.dynamics-item.motivations .dynamics-header i {
    color: #84db5f;
}

.dynamics-item.blocks .dynamics-header i {
    color: #ef4444;
}

.dynamics-item.transformation .dynamics-header i {
    color: #2563eb;
}

.dynamics-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #1e293b;
}

.dynamics-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dynamics-item li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.dynamics-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #84db5f;
    font-weight: bold;
}

.dynamics-item.blocks li::before {
    color: #ef4444;
}

.dynamics-item.transformation li::before {
    color: #2563eb;
}

.dynamics-conclusion {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.dynamics-conclusion p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.dynamics-conclusion p:last-child {
    margin-bottom: 0;
}

/* Meaning Map Section */
.meaning-map-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.meaning-map-intro, .meaning-map-explanation {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.meaning-map-explanation {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.meaning-map-table {
    margin: 3rem 0;
}

.meaning-map-table h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
    font-size: 1.5rem;
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 1rem;
}

.values-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.values-table th {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.values-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4b5563;
}

.values-table tr:nth-child(even) {
    background: #f8fafc;
}

.values-table tr:hover {
    background: #f0fdf4;
}

/* Contribution Areas */
.contribution-areas {
    margin-top: 3rem;
}

.contribution-areas h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
    font-size: 1.5rem;
}

.contribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.contribution-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #84db5f;
}

.contribution-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contribution-item p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Approach Page Responsive */
@media (max-width: 768px) {
    .approach-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-nav-item {
        padding: 1.5rem;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .principle-icon {
        margin: 0 auto;
    }
    
    .dynamics-grid {
        grid-template-columns: 1fr;
    }
    
    .contribution-grid {
        grid-template-columns: 1fr;
    }
    
    .values-table {
        font-size: 0.8rem;
    }
    
    .values-table th,
    .values-table td {
        padding: 0.5rem;
    }
}

/* Ages Page Styles */
.ages-nav {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.ages-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.ages-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    text-align: center;
}

.ages-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #84db5f;
    color: #84db5f;
}

.age-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.ages-nav-item span {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ages-nav-item small {
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

/* Age Section Styles */
.age-section {
    padding: 80px 0;
}

.age-section:nth-child(even) {
    background: #f8fafc;
}

.age-header {
    text-align: center;
    margin-bottom: 3rem;
}

.age-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 1.5rem;
}

.age-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
}

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

.age-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.age-description p {
    margin-bottom: 1.5rem;
}

.age-description p:last-child {
    margin-bottom: 0;
}

.advice-box {
    background: linear-gradient(135deg, #f0fdf4, #e0f2fe);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #84db5f;
    margin-bottom: 3rem;
}

.advice-box h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advice-box p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

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

.role-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.role-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.role-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.role-header h4 {
    color: #1e293b;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.role-item p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Age Section Specific Colors */
.early-childhood {
    background: #fef7ff;
}

.early-childhood .age-number {
    background: linear-gradient(135deg, #e879f9, #a855f7);
}

.early-childhood .age-icon {
    background: linear-gradient(135deg, #e879f9, #a855f7);
}

.early-childhood .role-header i {
    background: linear-gradient(135deg, #e879f9, #a855f7);
}

.school-years {
    background: #f0f9ff;
}

.school-years .age-number {
    background: linear-gradient(135deg, #a855f7, #2563eb);
}

.school-years .age-icon {
    background: linear-gradient(135deg, #a855f7, #2563eb);
}

.school-years .role-header i {
    background: linear-gradient(135deg, #a855f7, #2563eb);
}

.young-adults {
    background: #f0fdf4;
}

.young-adults .age-number {
    background: linear-gradient(135deg, #84db5f, #22c55e);
}

.young-adults .age-icon {
    background: linear-gradient(135deg, #84db5f, #22c55e);
}

.young-adults .role-header i {
    background: linear-gradient(135deg, #84db5f, #22c55e);
}

.adults {
    background: #fef3c7;
}

.adults .age-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.adults .age-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.adults .role-header i {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.seniors {
    background: #f3e8ff;
}

.seniors .age-number {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.seniors .age-icon {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.seniors .role-header i {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

/* Ages Page Responsive */
@media (max-width: 768px) {
    .ages-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .ages-nav-item {
        padding: 1.5rem;
    }
    
    .age-title {
        font-size: 2rem;
    }
    
    .age-number {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1rem;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .role-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .role-header i {
        margin: 0 auto;
    }
}

/* Projects Page Styles */
.projects-nav {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.projects-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.projects-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    text-align: center;
}

.projects-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #84db5f;
    color: #84db5f;
}

.projects-nav-item i {
    font-size: 3rem;
    color: #84db5f;
    margin-bottom: 1.5rem;
}

.projects-nav-item span {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.projects-nav-item small {
    color: #64748b;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.4;
}

/* Project Section Styles */
.project-section {
    padding: 80px 0;
    background: white;
}

.connection-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-style: italic;
}

.project-content, .connection-content {
    max-width: 1200px;
    margin: 0 auto;
}

.project-description, .connection-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.project-description p, .connection-description p {
    margin-bottom: 1.5rem;
}

.project-description p:last-child, .connection-description p:last-child {
    margin-bottom: 0;
}

/* Project Benefits */
.project-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #84db5f;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-content p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Impact Stages */
.impact-stages {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.stage-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #84db5f;
}

.stage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stage-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stage-content p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Roles Section */
.roles-section {
    margin-top: 4rem;
}

.roles-section h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.role-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.role-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.role-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.role-header h4 {
    color: #1e293b;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.role-item p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Impact Examples */
.impact-examples {
    padding: 80px 0;
    background: white;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.example-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

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

.example-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.example-item:hover .example-image img {
    transform: scale(1.05);
}

.example-content {
    padding: 2rem;
}

.example-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.example-content p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Projects Page Responsive */
@media (max-width: 768px) {
    .projects-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-nav-item {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .project-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .stage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stage-number {
        margin: 0 auto;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .role-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .role-header i {
        margin: 0 auto;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* Trainers Page Styles */
.trainers-nav {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.trainers-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trainers-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    text-align: center;
}

.trainers-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #84db5f;
    color: #84db5f;
}

.trainers-nav-item i {
    font-size: 3rem;
    color: #84db5f;
    margin-bottom: 1.5rem;
}

.trainers-nav-item span {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.trainers-nav-item small {
    color: #64748b;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.4;
}

/* Handbook Section */
.handbook-section {
    padding: 80px 0;
    background: white;
}

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

.handbook-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.handbook-description p {
    margin-bottom: 1.5rem;
}

.handbook-description p:last-child {
    margin-bottom: 0;
}

.handbook-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #84db5f;
}


.feature-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-content p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.handbook-availability {
    text-align: center;
}

.availability-card {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: #2563eb;
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.availability-icon {
    width: 80px;
    height: 80px;
    background: #84db5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    color: white;
}

.availability-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white !important;
}

.availability-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white !important;
}

.availability-cta .cta-button {
    background: white;
    color: #3b82f6;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.availability-cta .cta-button:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Qualities Section */
.qualities-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.qualities-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.qualities-description p {
    margin-bottom: 1.5rem;
}

.qualities-description p:last-child {
    margin-bottom: 0;
}

.self-assessment {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.self-assessment h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.self-assessment > p {
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
}

.assessment-questions {
    margin-bottom: 3rem;
}

.question-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #84db5f;
}

.question-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-text {
    color: #4b5563;
    line-height: 1.6;
    flex: 1;
}

.assessment-scoring h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.score-levels {
    display: grid;
    gap: 1rem;
}

.score-level {
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.score-level.excellent {
    background: #f0fdf4;
    border-left-color: #22c55e;
}

.score-level.good {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.score-level.developing {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.score-level.beginning {
    background: #f1f5f9;
    border-left-color: #64748b;
}

.score-range {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.score-description {
    color: #4b5563;
    line-height: 1.5;
}

/* Assessment Section */
.assessment-section {
    padding: 80px 0;
    background: white;
}

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

.assessment-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.assessment-description p {
    margin-bottom: 1.5rem;
}

.assessment-description p:last-child {
    margin-bottom: 0;
}

.journal-templates h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.template-item {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #84db5f;
}

.template-header h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.template-header p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.template-questions {
    display: grid;
    gap: 1rem;
}

.question {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    color: #4b5563;
    border-left: 3px solid #84db5f;
}

.template-checklist {
    display: grid;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #84db5f;
}

.checklist-text {
    color: #4b5563;
    font-weight: 500;
}

.rating-scale {
    display: flex;
    gap: 0.5rem;
}

.rating-option {
    width: 30px;
    height: 30px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-option:hover {
    border-color: #84db5f;
    color: #84db5f;
}

.template-weekly {
    display: grid;
    gap: 1rem;
}

.weekly-item {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    color: #4b5563;
    border-left: 3px solid #84db5f;
    line-height: 1.6;
}

.weekly-item strong {
    color: #1e293b;
}

/* Workshops Section */
.workshops-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.workshops-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.workshops-description p {
    margin-bottom: 1.5rem;
}

.workshops-description p:last-child {
    margin-bottom: 0;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.workshop-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #84db5f;
}

.workshop-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.workshop-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.workshop-content p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.workshops-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-content p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

.cta-button.secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #1e40af;
}

.cta-button.secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
}

/* Trainers Page Responsive */
@media (max-width: 768px) {
    .trainers-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .trainers-nav-item {
        padding: 2rem;
    }
    
    .handbook-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        text-align: center;
    }
    
    .availability-card {
        flex-direction: column;
        text-align: center;
    }
    
    .question-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .question-number {
        margin: 0 auto;
    }
    
    .checklist-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-item {
        flex-direction: column;
        text-align: center;
    }
    
    .workshop-icon {
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
    }
}

/* Resources Page Styles */
.resources-nav {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.resources-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resources-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    text-align: center;
}

.resources-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #84db5f;
    color: #84db5f;
}

.resources-nav-item i {
    font-size: 3rem;
    color: #84db5f;
    margin-bottom: 1.5rem;
}

.resources-nav-item span {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.resources-nav-item small {
    color: #64748b;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.4;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
    background: white;
}

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

.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

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

.blog-post-card.featured {
    display: flex;
    flex-direction: column;
}

.blog-post-image {
    position: relative;
    overflow: hidden;
}

.blog-post-card.featured .blog-post-image {
    width: 100%;
    height: 200px;
}

.blog-post-card:not(.featured) .blog-post-image {
    height: 200px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-post-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-card.featured .blog-post-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.blog-post-date {
    font-weight: 500;
}

.blog-post-category {
    background: #f0fdf4;
    color: #84db5f;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.blog-post-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-post-card.featured .blog-post-title {
    font-size: 1.6rem;
}

.blog-post-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-post-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-post-link:hover {
    color: #84db5f;
}

.blog-posts-cta {
    text-align: center;
}

/* Free Guides Section */
.free-guides-section {
    padding: 80px 0;
    background: #f8fafc;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
    text-align: center;
}

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

.guide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.guide-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.guide-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.guide-pages {
    color: #64748b;
    font-weight: 500;
}

.guide-format {
    background: #f0fdf4;
    color: #84db5f;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.guide-download-btn {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.guide-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 22, 174, 0.3);
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

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

.video-card.featured {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-card.featured .video-thumbnail {
    width: 50%;
    height: 300px;
}

.video-card:not(.featured) .video-thumbnail {
    height: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.video-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-content {
    padding: 2rem;
}

.video-card.featured .video-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.video-card.featured .video-title {
    font-size: 1.6rem;
}

.video-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.video-views {
    font-weight: 500;
}

.video-date {
    font-weight: 500;
}

.videos-cta {
    text-align: center;
}


/* Resources Page Responsive */
@media (max-width: 768px) {
    .resources-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-nav-item {
        padding: 2rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .blog-post-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .blog-post-card.featured .blog-post-image,
    .blog-post-card.featured .blog-post-content {
        width: 100%;
    }
    
    .blog-post-card.featured .blog-post-image {
        height: 200px;
    }
    
    .video-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .video-card.featured .video-thumbnail,
    .video-card.featured .video-content {
        width: 100%;
    }
}

/* Resources Page Mobile */
@media (max-width: 480px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-card.featured .video-thumbnail {
        height: 200px;
    }
    
}

/* Contact Page Styles */
.contact-nav {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.contact-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    text-align: center;
}

.contact-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #84db5f;
    color: #84db5f;
}

.contact-nav-item i {
    font-size: 3rem;
    color: #84db5f;
    margin-bottom: 1.5rem;
}

.contact-nav-item span {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.contact-nav-item small {
    color: #64748b;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.4;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group label {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #84db5f;
    box-shadow: 0 0 0 3px rgba(132, 219, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #4b5563;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #84db5f;
    border-color: #84db5f;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.submit-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #84db5f;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.contact-method {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #84db5f;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.contact-details h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-details p {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #84db5f;
}

.contact-note {
    color: #64748b;
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}


/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-nav-item {
        padding: 2rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-sidebar {
        order: -1;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #84db5f, #2563eb, #84db5f);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(132, 219, 95, 0.6);
    border-radius: 50%;
    animation: float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-dot:nth-child(1) {
    left: 10%;
    top: 20%;
}

.floating-dot:nth-child(2) {
    left: 80%;
    top: 30%;
}

.floating-dot:nth-child(3) {
    left: 60%;
    top: 70%;
}

.floating-dot:nth-child(4) {
    left: 30%;
    top: 80%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.7;
    }
}

/* Back to Top Button */
.back-to-top-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #3b82f6;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: #84db5f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(132, 219, 95, 0.5));
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f8fafc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: #84db5f;
    transform: translateY(-2px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #84db5f, #2563eb);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Footer social styles removed */

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

.social-links a i {
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0;
}

/* Responsive Design - Updated for Overlapping Header */
@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.5rem 20px;
    }

    .top-bar-info {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.8rem;
    }

    .top-bar-social {
        gap: 0.8rem;
    }

    .top-bar-social a {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    /* Overlapping Logo Mobile */
    .logo-circle {
        width: 110px;
        height: 110px;
        top: 0;
        border-width: 3px;
    }

    .logo-image {
        width: 100%;
        height: 100%;
    }

    .logo-circle i {
        font-size: 1.8rem;
    }

    /* Header Mobile */
    .header {
        margin-top: 0;
    }

    .header-background {
        height: 70px;
    }

    /* Wave effects removed for cleaner design */

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
    }

    .nav-left, .nav-right {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: #1e40af;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        z-index: 1000;
        gap: 0;
    }

    .nav-left.active, .nav-right.active {
        left: 0;
        transition: left 0.3s ease;
    }

    .nav-left li, .nav-right li {
        margin: 1rem 0;
    }

    .nav-logo-space {
        width: 80px;
        height: 50px;
    }

    .nav-toggle {
        display: flex;
        position: static;
        transform: none;
    }

    /* Hero Mobile */
    /* Hero Mobile - Split Layout */
    .hero {
        padding-top: 140px;
        min-height: 100vh;
    }

    .hero-container {
        max-width: 100%;
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-header {
        margin-bottom: 3rem;
    }

    .hero-main-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-card {
        padding: 1.5rem;
    }

    .hero-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .card-quote {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .card-author {
        font-size: 0.9rem;
    }

    .card-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .info-list li {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .age-groups {
        justify-content: center;
    }

    .age-tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    .overlay-content {
        padding: 1.5rem;
    }

    .overlay-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .overlay-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .card-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-illustration-container {
        width: 300px;
        height: 300px;
    }

    .profile-circle {
        width: 280px;
        height: 280px;
        padding: 15px;
        border-radius: 20px;
    }

    .profile-image {
        border-radius: 12px;
    }

    .floating-elements {
        width: 300px;
        height: 300px;
    }

    .floating-element {
        width: 45px;
        height: 45px;
    }

    .floating-element i {
        font-size: 1.2rem;
    }

    .hero-quote {
        padding: 2rem;
        margin-bottom: 2rem;
        max-width: 100%;
        border-radius: 20px;
    }

    .hero-quote blockquote {
        font-size: 1.3rem;
    }

    .hero-quote blockquote::before {
        left: -15px;
        font-size: 2.5rem;
        top: -15px;
    }

    .hero-quote cite {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    /* Section adjustments */
    .section-title {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        padding: 2rem;
    }

    .age-group-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .age-range {
        min-width: 100px;
    }

    .age-group-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .age-group-card {
        padding: 2rem;
    }

    .age-group-content p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Mobile specific adjustments */
    .hero-quote blockquote {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-quote blockquote::before {
        display: none;
    }

    .age-group-card {
        padding: 1.5rem;
        border-left-width: 3px;
    }

    .age-group-card:hover {
        transform: translateX(5px);
    }

    .age-group-title {
        font-size: 1.3rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-icon {
        width: 70px;
        height: 70px;
    }

    .highlight-icon i {
        font-size: 2rem;
    }
}

/* Scroll Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Responsive */
@media (max-width: 768px) {
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-image {
        order: -1;
        position: static;
        margin-bottom: 2rem;
        gap: 0.8rem;
    }
    
    .founder-photo {
        width: 200px;
        height: 300px;
    }
    
    .founder-image .founder-signature {
        max-width: 200px;
        padding: 0.8rem;
    }
    
    .founder-content {
        order: 2;
    }
}

@media (max-width: 480px) {
    .founder-photo {
        width: 150px;
        height: 230px;
    }
    
    .founder-image .founder-signature {
        max-width: 150px;
        padding: 0.6rem;
    }
    
    .founder-image .founder-signature p {
        font-size: 0.8rem;
    }
    
    .founder-image .founder-signature strong {
        font-size: 0.9rem;
    }
    
    .founder-quote {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   BLOG DETAIL PAGE STYLES
   ================================ */

/* Blog Detail Hero Section */
.blog-detail-hero {
    padding: 120px 0 60px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23cbd5e1" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23cbd5e1" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23cbd5e1" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23cbd5e1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb-link:hover {
    color: #3b82f6;
}

.breadcrumb-separator {
    color: #cbd5e1;
    font-weight: 300;
}

.breadcrumb-current {
    color: #1e293b;
    font-weight: 500;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-detail-header {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.blog-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item i {
    color: #3b82f6;
    font-size: 0.8rem;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-detail-excerpt {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 400;
}

/* Blog Detail Content */
.blog-detail-content {
    padding: 80px 0;
    background: white;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Article Styles */
.blog-article {
    background: white;
}

.featured-image-container {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 600px;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #1e293b;
    font-weight: 600;
    margin: 2rem 0 1rem;
    scroll-margin-top: 100px;
}

.article-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content h4 {
    font-size: 1.3rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.article-content code {
    background: #f1f5f9;
    color: #e11d48;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.article-content pre {
    background: #1e293b;
    color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.article-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content a {
    color: #3b82f6;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #84db5f;
}

/* Article Footer */
.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.article-tags {
    margin-bottom: 3rem;
}

.tags-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.tags-title i {
    color: #3b82f6;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: #f0fdf4;
    color: #84db5f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #bbf7d0;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #84db5f;
    color: white;
}

.article-share {
    text-align: center;
}

.share-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.share-title i {
    color: #3b82f6;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.share-btn:hover::before {
    transform: scale(1);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook::before {
    background: #166fe5;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter::before {
    background: #1991db;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.linkedin::before {
    background: #095ba8;
}

.share-btn.email {
    background: #6b7280;
}

.share-btn.email::before {
    background: #4b5563;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.widget-title i {
    color: #3b82f6;
}

/* Related Articles Sidebar */
.related-articles-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article-card-sidebar {
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s ease;
}

.related-article-card-sidebar:hover {
    border-color: #3b82f6;
}

.related-article-image-sidebar {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.related-article-image-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article-content-sidebar {
    padding: 1rem;
}

.article-title-sidebar {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1e293b;
}

.article-title-sidebar a {
    color: inherit;
    text-decoration: none;
}

.article-title-sidebar a:hover {
    color: #3b82f6;
}

/* Meta Sidebar */
.meta-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-item-sidebar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #64748b;
    transition: all 0.2s ease;
}

.meta-item-sidebar:hover {
    background: #3b82f6;
    color: white;
}

.meta-item-sidebar i {
    color: #3b82f6;
    font-size: 1rem;
    width: 16px;
    text-align: center;
    transition: color 0.2s ease;
}

.meta-item-sidebar:hover i {
    color: white;
}

/* Tags Sidebar */
.tags-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-sidebar {
    background: #f1f5f9;
    color: #3b82f6;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tag-sidebar:hover {
    background: #3b82f6;
    color: white;
}

/* Share Sidebar */
.share-sidebar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #64748b;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.share-btn-sidebar:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.share-btn-sidebar.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.share-btn-sidebar.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.share-btn-sidebar.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-btn-sidebar.email:hover {
    background: #ea4335;
    border-color: #ea4335;
}

.share-btn-sidebar span {
    display: none;
}


.quick-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link-item {
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link-item:hover {
    background: #3b82f6;
    color: white;
    transform: translateX(5px);
}

.newsletter-widget p {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #3b82f6;
}

.newsletter-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Related Articles Section */
.related-articles {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid #e2e8f0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-title i {
    color: #3b82f6;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.related-article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.related-article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 92, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-article-card:hover .article-overlay {
    opacity: 1;
}

.read-more-btn {
    background: white;
    color: #3b82f6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #84db5f;
    color: white;
    transform: scale(1.1);
}

.related-article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.article-date,
.reading-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-date i,
.reading-time i {
    color: #3b82f6;
}

.article-title {
    margin-bottom: 0.75rem;
}

.article-title a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #3b82f6;
}

.article-excerpt {
    color: #4b5563;
    line-height: 1.5;
    font-size: 0.9rem;
}

.related-articles-cta {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #84db5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #3b82f6;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #84db5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 100px 0 40px;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-excerpt {
        font-size: 1.1rem;
    }
    
    .blog-meta-info {
        gap: 1rem;
    }
    
    .breadcrumb-current {
        max-width: 200px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .share-buttons {
        gap: 0.75rem;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .blog-detail-hero {
        padding: 80px 0 30px;
    }
    
    .blog-detail-title {
        font-size: 1.6rem;
    }
    
    .blog-detail-excerpt {
        font-size: 1rem;
    }
    
    .blog-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .meta-item {
        font-size: 0.8rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb-current {
        max-width: 150px;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        align-self: flex-start;
        padding: 0.75rem 1.5rem;
    }
}

/* ================================
   TRAINER ASSESSMENT STYLES
   ================================ */

/* Assessment Interactive Styles */
.question-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.question-item.answered {
    border-color: #3b82f6;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
}

.question-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.question-number {
    background: #f1f5f9;
    color: #3b82f6;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.question-item.answered .question-number {
    background: #3b82f6;
    color: white;
}

.question-text {
    color: #374151;
    line-height: 1.5;
    font-size: 0.95rem;
}

.rating-scale {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.rating-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.rating-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: scale(1.05);
}

.rating-btn.selected {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    transform: scale(1.1);
}

.assessment-progress {
    margin: 2rem 0;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #84db5f);
    width: 0%;
    transition: width 0.5s ease;
}

.progress-text {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.assessment-result {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.result-header {
    margin-bottom: 1.5rem;
}

.result-header h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.score-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.score-total {
    color: #64748b;
    font-size: 1.5rem;
}

.result-content {
    margin-bottom: 2rem;
}

.result-level {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.result-level.excellent {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.result-level.good {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.result-level.developing {
    background: #fffbeb;
    border: 1px solid #fed7aa;
}

.result-level.beginning {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.result-level h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.result-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.result-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.result-btn.primary {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.result-btn.primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

@media (max-width: 768px) {
    .question-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rating-scale {
        gap: 0.25rem;
    }
    
    .rating-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .score-display {
        font-size: 2rem;
    }
}
