/* Base Styles and Variables */
:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #64b5f6;
    --secondary-color: #ffa000;
    --secondary-dark: #ff8f00;
    --secondary-light: #ffca28;
    --chart-green: #4caf50;
    --chart-red: #f44336;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #888888;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #e1e4e8;
    --border-light: #eaeaea;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-stronger: 0 10px 20px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    --border-radius: 5px;
    --border-radius-lg: 8px;
    --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-heading: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    outline: none;
    border: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

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

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

.btn-tertiary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: var(--bg-light);
    border-color: var(--text-secondary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    display: block;
}

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--bg-card);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-dark);
}

nav ul {
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    nav ul.show {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    padding: 100px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-stronger);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

/* Features Section */
.features {
    background-color: var(--bg-light);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
}

/* Recent Posts Section */
.recent-posts {
    background-color: var(--bg-card);
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.post-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.post-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 600;
}

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.post-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.post-meta span:not(:last-child) {
    margin-right: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Beginners Guide Section */
.beginners-guide {
    background-color: var(--bg-light);
    position: relative;
}

.beginners-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23eeeeee" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>');
    background-repeat: repeat;
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

.beginners-guide .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.guide-item {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.guide-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(30, 136, 229, 0.1);
    position: absolute;
    top: 10px;
    right: 15px;
}

.guide-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.guide-item p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.guide-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    z-index: 2;
}

.guide-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-card);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    min-width: 350px;
    flex: 1;
}

.testimonial-content {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

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

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

.testimonial-author h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .testimonial {
        min-width: 300px;
    }
}

/* Call to Action Section */
.cta {
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-content {
    flex: 1;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-stronger);
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.125rem;
}

@media (max-width: 992px) {
    .cta .container {
        flex-direction: column;
    }
    
    .cta-content, .cta-image {
        width: 100%;
        text-align: center;
    }
}

/* Glossary Section */
.glossary {
    background-color: var(--bg-light);
}

.glossary h2, .glossary > p {
    text-align: center;
}

.glossary > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.glossary-item {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.glossary-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-stronger);
}

.glossary-item h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.glossary-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.glossary-expand {
    text-align: center;
}

/* Footer */
footer {
    background-color: #1a2236;
    color: #a9b2c3;
    padding: 80px 0 40px;
}

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

.footer-col h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 20px;
}

.registration {
    font-size: 0.875rem;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-col ul li a {
    color: #a9b2c3;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-posts li {
    margin-bottom: 15px;
}

.footer-posts li a {
    display: block;
    color: #a9b2c3;
    transition: var(--transition);
}

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

address p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

address p svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #a9b2c3;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-stronger);
    z-index: 9999;
    max-width: 480px;
    margin: 0 auto;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-out;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    padding: 25px;
}

.cookie-content h3 {
    margin-bottom: 15px;
}

.cookie-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.cookie-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.cookie-content a {
    color: var(--primary-color);
    font-size: 0.875rem;
    display: inline-block;
}

.cookie-content a:hover {
    text-decoration: underline;
}

/* Blog Page Styles */
.blog-header, .contact-header, .courses-header, .about-header {
    background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.blog-header h1, .contact-header h1, .courses-header h1, .about-header h1 {
    color: white;
    margin-bottom: 15px;
}

.blog-header p, .contact-header p, .courses-header p, .about-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.category-tab {
    padding: 8px 20px;
    border-radius: 30px;
    background-color: var(--bg-card);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.category-tab:hover, .category-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-posts {
    padding-top: 20px;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-dark);
    color: white;
    padding: 80px 0;
}

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

.newsletter h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    border: none;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* About Page Styles */
.our-story, .our-mission {
    background-color: var(--bg-card);
}

.our-story .container, .our-mission .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

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

.story-image img, .mission-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.mission-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

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

@media (max-width: 992px) {
    .our-story .container, .our-mission .container {
        flex-direction: column;
    }
    
    .our-story .container {
        flex-direction: column-reverse;
    }
    
    .story-content, .mission-content, .story-image, .mission-image {
        width: 100%;
    }
}

/* Team Section */
.team-section {
    background-color: var(--bg-light);
}

.team-section h2, .team-section > p {
    text-align: center;
}

.team-section > p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

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

.team-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.25rem;
    margin: 20px 20px 5px;
}

.team-card p {
    margin: 0 20px 15px;
}

.team-card p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card .social-icons {
    padding: 0 20px 20px;
}

.team-card .social-icons a {
    width: 32px;
    height: 32px;
    background-color: rgba(30, 136, 229, 0.1);
    color: var(--primary-color);
}

.team-card .social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Our Approach Section */
.our-approach {
    background-color: var(--bg-card);
}

.our-approach h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.approach-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.approach-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.approach-icon svg {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
}

.approach-item h3 {
    margin-bottom: 15px;
}

.approach-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Certifications Section */
.certifications {
    background-color: var(--bg-light);
}

.certifications h2 {
    text-align: center;
    margin-bottom: 50px;
}

.certification-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.certification-logos img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.certification-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Courses Page Styles */
.course-categories {
    margin-top: -40px;
}

/* Featured Course */
.featured-course {
    background-color: var(--bg-card);
    padding-top: 40px;
}

.featured-course .container {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.featured-content {
    flex: 1;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -60px;
    left: -10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow);
}

.featured-image {
    flex: 1;
}

.featured-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.featured-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.featured-highlights {
    margin-bottom: 30px;
}

.featured-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.featured-highlights li svg {
    color: var(--chart-green);
    flex-shrink: 0;
}

.featured-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 992px) {
    .featured-course .container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .featured-badge {
        top: -20px;
    }
    
    .featured-pricing {
        flex-direction: column;
        gap: 20px;
    }
    
    .price-buttons {
        width: 100%;
    }
    
    .price-buttons .btn {
        flex: 1;
    }
}

/* Course Grid */
.courses-grid {
    background-color: var(--bg-light);
    padding-top: 60px;
}

.courses-grid h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.course-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.course-level {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.beginner {
    background-color: var(--chart-green);
}

.intermediate {
    background-color: var(--secondary-color);
}

.advanced {
    background-color: var(--chart-red);
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.course-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.course-details {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-item svg {
    color: var(--primary-light);
}

.course-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.course-price span {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.25rem;
}

/* Course Bundles */
.course-bundles {
    background-color: var(--bg-card);
    padding-top: 80px;
}

.course-bundles h2, .course-bundles > p {
    text-align: center;
}

.course-bundles > p {
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.bundle-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.featured-bundle {
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
}

.featured-bundle:hover {
    transform: translateY(-5px) scale(1.03);
}

.bundle-header {
    position: relative;
    background-color: var(--primary-dark);
    color: white;
    padding: 20px;
}

.bundle-header h3 {
    color: white;
    margin-bottom: 0;
}

.bundle-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 600;
}

.bundle-content {
    padding: 25px;
}

.bundle-courses {
    margin: 20px 0;
    padding-left: 20px;
}

.bundle-courses li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.bundle-courses li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.bundle-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.price-comparison {
    display: flex;
    flex-direction: column;
}

.original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.875rem;
}

.sale-price {
    font-weight: 700;
    color: var(--chart-red);
    font-size: 1.25rem;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-grid {
    padding-top: 40px;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.contact-info h2, .contact-form-container h2 {
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

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

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}

.method-details h3 {
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.method-details p {
    margin-bottom: 5px;
}

.detail-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.social-contact h3 {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.contact-form-container {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.875rem;
}

.checkbox-group a {
    color: var(--primary-color);
}

.map-section {
    background-color: var(--bg-card);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.map-container img {
    width: 100%;
    height: auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-stronger);
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-primary);
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: var(--chart-green);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 15px;
}

.thank-you-message p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.close-btn {
    margin-top: 10px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.py-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-3 {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.5s ease 0.1s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.5s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.5s ease 0.3s forwards;
    opacity: 0;
}
