/* Variables */
:root {
    --primary-color: #4a6bf0;
    --primary-dark: #3758db;
    --primary-light: #6382f3;
    --secondary-color: #2de2c3;
    --secondary-dark: #22c9ad;
    --secondary-light: #48e7cc;
    --dark-color: #1e2a5a;
    --text-color: #333;
    --text-light: #6c757d;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #dee2e6;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --footer-bg: #0f1741;
}

/* Reset and Base styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section */
section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    font-size: 3.2rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 8rem;
    height: 0.4rem;
    background: var(--primary-color);
    margin: 1.5rem auto 0;
    border-radius: 5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -4rem;
    margin-bottom: 5rem;
    font-size: 1.8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.6rem;
}

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

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

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

.secondary-btn:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.text-btn {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 1.5rem;
}

.text-btn:hover {
    background-color: rgba(74, 107, 240, 0.1);
    color: var(--primary-dark);
}

.btn i {
    margin-left: 0.8rem;
}

.center-btn {
    text-align: center;
    margin-top: 4rem;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

.logo img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

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

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin-left: 3rem;
}

.main-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
}

.main-menu a.active,
.main-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(74, 107, 240, 0.1);
}

.main-menu a i {
    margin-right: 0.8rem;
    font-size: 1.8rem;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 2.4rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 10rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 60rem;
}

.hero-content h2 {
    font-size: 4.2rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
    color: var(--text-light);
}

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

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

.hero-image {
    width: 45%;
}

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

/* Countdown Section */
.countdown-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.countdown-section h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.countdown > div {
    margin: 0 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    min-width: 12rem;
}

.countdown span {
    display: block;
}

.countdown span:first-child {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 1.4rem;
    margin-top: 1rem;
    opacity: 0.8;
}

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

.countdown-section .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Courses */
.featured-courses {
    background-color: var(--white);
}

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

.course-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.course-image {
    height: 20rem;
    overflow: hidden;
}

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

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

.course-content {
    padding: 2.5rem;
}

.course-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.course-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.course-meta span {
    display: flex;
    align-items: center;
}

.course-meta i {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    background-color: var(--gray-light);
}

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

.testimonial {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial:before {
    content: '\201C';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    color: var(--primary-light);
    opacity: 0.1;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

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

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

.testimonial-author h4 {
    margin-bottom: 0.3rem;
    font-size: 1.8rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Latest Blog */
.latest-blog {
    background-color: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.blog-image {
    height: 20rem;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 2.5rem;
}

.blog-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.text-btn {
    display: inline-flex;
    align-items: center;
}

.text-btn i {
    transition: var(--transition);
}

.text-btn:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 8rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin: 0 1rem;
    transition: var(--transition);
}

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

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    padding: 2rem 0;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--white);
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-more-info {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.cookie-more-info a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
}

.page-header h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 3.6rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.post-image {
    height: 100%;
    min-height: 25rem;
    overflow: hidden;
}

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

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

.post-content {
    padding: 2.5rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.post-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.post-content p {
    margin-bottom: 2rem;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.sidebar-widget h4:after {
    content: '';
    display: block;
    width: 5rem;
    height: 0.3rem;
    background: var(--primary-color);
    margin-top: 1rem;
    border-radius: 5rem;
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--gray-dark);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1.6rem;
}

.search-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-medium);
    padding-bottom: 1rem;
}

.categories-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    transition: var(--transition);
}

.categories-widget a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.categories-widget span {
    background-color: var(--gray-medium);
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.popular-post {
    display: flex;
    gap: 1.5rem;
}

.popular-post-image {
    width: 8rem;
    height: 8rem;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

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

.popular-post-content h5 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    line-height: 1.4;
}

.popular-post-content a {
    color: var(--text-color);
    transition: var(--transition);
}

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

.post-date {
    color: var(--text-light);
    font-size: 1.4rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tags-cloud a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--gray-medium);
    color: var(--text-color);
    border-radius: 3rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

.tags-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.newsletter-form input {
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--gray-dark);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

/* Single Post */
.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.single-post .featured-image {
    height: 45rem;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.single-post .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-header {
    margin-bottom: 3rem;
}

.post-header h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
}

.post-body {
    font-size: 1.7rem;
    line-height: 1.8;
}

.post-body h3 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 2.4rem;
}

.post-body h4 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.post-body ul, .post-body ol {
    margin-bottom: 2.5rem;
}

.post-body li {
    margin-bottom: 1rem;
}

.post-body img {
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.post-body blockquote {
    padding: 2rem 3rem;
    margin: 3rem 0;
    background-color: var(--gray-light);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    border-radius: var(--border-radius);
}

.post-body blockquote p:last-child {
    margin-bottom: 0;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 4rem 0;
    align-items: center;
}

.post-tags span {
    color: var(--text-light);
}

.post-tags a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--gray-medium);
    color: var(--text-color);
    border-radius: 3rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.post-share span {
    color: var(--text-light);
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.post-share a.facebook {
    background-color: #3b5998;
}

.post-share a.twitter {
    background-color: #1da1f2;
}

.post-share a.linkedin {
    background-color: #0077b5;
}

.post-share a.whatsapp {
    background-color: #25d366;
}

.post-share a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
    border-top: 1px solid var(--gray-medium);
    border-bottom: 1px solid var(--gray-medium);
    padding: 3rem 0;
}

.post-nav-prev, .post-nav-next {
    display: flex;
}

.post-nav-prev a, .post-nav-next a {
    display: flex;
    flex-direction: column;
    color: var(--text-color);
}

.post-nav-prev a {
    align-items: flex-start;
}

.post-nav-next a {
    align-items: flex-end;
    text-align: right;
}

.post-nav-prev a:hover, .post-nav-next a:hover {
    color: var(--primary-color);
}

.post-nav-prev span, .post-nav-next span {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.post-nav-prev i {
    margin-right: 0.8rem;
}

.post-nav-next i {
    margin-left: 0.8rem;
}

.post-author-bio {
    display: flex;
    gap: 2.5rem;
    background-color: var(--gray-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
}

.author-avatar {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 1rem;
}

.author-info p {
    margin-bottom: 2rem;
}

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

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    transition: var(--transition);
}

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

.related-posts h3 {
    margin-bottom: 3rem;
}

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

.related-post {
    transition: var(--transition);
}

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

.related-post-image {
    height: 18rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

.related-post h4 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.related-post a {
    color: var(--text-color);
}

.related-post a:hover {
    color: var(--primary-color);
}

.sidebar-widget.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    text-align: center;
}

.cta-widget h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-widget h4:after {
    display: none;
}

.cta-widget p {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-widget .btn {
    background-color: var(--white);
    color: var(--primary-color);
    width: 100%;
}

.cta-widget .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Page */
.about-intro {
    padding-top: 4rem;
}

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

.about-text h3 {
    margin-bottom: 2.5rem;
}

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

.mission-vision {
    background-color: var(--gray-light);
}

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

.mission-box, .vision-box, .values-box {
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    background-color: rgba(74, 107, 240, 0.1);
}

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

.values-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-box li {
    margin-bottom: 1.5rem;
}

.values-box li:last-child {
    margin-bottom: 0;
}

.team-section {
    background-color: var(--white);
}

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

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

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

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-member h3 {
    margin: 2rem 0 0.5rem;
    font-size: 2rem;
}

.team-member > p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-member > p:last-of-type {
    padding: 0 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.team-member .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--gray-light);
    color: var(--primary-color);
    transition: var(--transition);
}

.team-member .social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

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

.stats-section .section-title {
    color: var(--white);
}

.stats-section .section-title:after {
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 3rem;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.stat-number {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-text {
    font-size: 1.6rem;
    opacity: 0.9;
}

.methodology-section {
    background-color: var(--gray-light);
}

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

.methodology-features {
    display: grid;
    gap: 2.5rem;
}

.feature {
    display: flex;
    gap: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 4rem;
}

.feature-content h4 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.feature-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

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

.about-testimonials {
    background-color: var(--white);
}

.about-testimonials .testimonials-slider {
    max-width: 90rem;
    margin: 0 auto;
}

.partners-section {
    background-color: var(--gray-light);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 3rem;
    align-items: center;
}

.partner-logo {
    background-color: var(--white);
    height: 10rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

.cta-section h3 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .secondary-btn {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

/* Contact Page */
.contact-section {
    padding-top: 4rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info {
    background-color: var(--primary-color);
    padding: 4rem;
    border-radius: var(--border-radius);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 2rem;
}

.contact-icon {
    font-size: 2.2rem;
    color: var(--white);
    min-width: 2.5rem;
}

.contact-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.7rem;
}

.contact-text p, .contact-text a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.contact-text a:hover {
    color: var(--white);
    text-decoration: underline;
}

.social-contact h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
}

.social-contact .social-links {
    justify-content: flex-start;
    margin-bottom: 0;
}

.contact-form-container {
    background-color: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--gray-dark);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 107, 240, 0.2);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: 1.8rem;
    height: 1.8rem;
}

.form-submit {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.map-section {
    background-color: var(--gray-light);
}

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

.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid var(--gray-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-item.active .faq-question h4 {
    color: var(--white);
}

.faq-item.active .faq-toggle {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 500px;
    border-top: 1px solid var(--gray-dark);
}

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

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 4rem;
    max-width: 50rem;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

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

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

.thank-you-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 2rem;
}

.thank-you-content h3 {
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    margin-bottom: 3rem;
    color: var(--text-light);
}

.close-btn {
    min-width: 15rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border: 1px solid var(--gray-dark);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--gray-light);
}

/* Salary Table */
.salary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
}

.salary-table th, .salary-table td {
    padding: 1.5rem;
    text-align: left;
    border: 1px solid var(--gray-dark);
}

.salary-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.salary-table tr:nth-child(even) {
    background-color: var(--gray-light);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 60%;
    }
    
    .hero-content h2 {
        font-size: 3.8rem;
    }
    
    .courses-grid, 
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 5rem;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        max-width: 60rem;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-layout, 
    .post-layout {
        grid-template-columns: 1fr;
    }
    
    .about-content, 
    .methodology-content, 
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    .main-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .main-menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-menu li {
        margin: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .courses-grid, 
    .blog-grid, 
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 25rem;
    }
    
    .countdown > div {
        margin: 0 1rem;
        padding: 1.5rem;
        min-width: 8rem;
    }
    
    .countdown span:first-child {
        font-size: 3.6rem;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .post-nav-next {
        justify-content: flex-start;
    }
    
    .post-nav-next a {
        align-items: flex-start;
        text-align: left;
    }
    
    .post-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 54%;
    }
    
    .hero-content h2 {
        font-size: 3.4rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown > div {
        flex: 1 0 40%;
        margin-bottom: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
