/* Base Styles and Variables */
:root {
    --primary-color: #3282b8;
    --primary-dark: #1a508b;
    --primary-light: #bbe1fa;
    --secondary-color: #ff6b6b;
    --text-color: #333;
    --text-light: #777;
    --light-bg: #f8f9fa;
    --dark-bg: #222;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --white: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

section {
    padding: 80px 0;
}

/* Frame Style - Custom Border for Images */
.frame {
    position: relative;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.frame img {
    display: block;
    border-radius: 3px;
    position: relative;
    z-index: 1;
}

.frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    z-index: 0;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo img {
    max-height: 60px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hamburger Menu for Mobile */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--white), var(--light-bg));
    padding: 80px 0;
}

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

.hero-content {
    flex: 1;
}

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

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

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

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

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

/* Latest Posts Section */
.latest-posts {
    background-color: var(--light-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.view-all:hover {
    color: var(--primary-dark);
}

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

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.post-content {
    padding: 20px;
}

.post-date {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    transition: var(--transition);
}

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

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

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

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

/* Stats Section */
.stats {
    background-color: var(--white);
    text-align: center;
}

.stats h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.chart-container {
    max-width: 800px;
    margin: 0 auto 20px;
    position: relative;
}

.chart-description {
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

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

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

.newsletter-form .btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

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

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

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

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

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

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

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

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

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

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

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

.footer-bottom p {
    color: #aaa;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

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

.btn-cookie {
    padding: 8px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.accept {
    background-color: var(--success-color);
    color: var(--white);
}

.configure {
    background-color: var(--warning-color);
    color: var(--text-color);
}

.reject {
    background-color: var(--danger-color);
    color: var(--white);
}

.cookie-more {
    color: var(--primary-color);
    text-decoration: underline;
    margin-top: 5px;
    display: inline-block;
}

/* Blog Page Styles */
.page-header {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

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

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

.blog-content {
    padding: 60px 0;
}

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

.post-card.large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post-card.large .post-image {
    height: 100%;
}

.post-card.large .post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.newsletter {
    background-color: var(--light-bg);
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

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

/* About Us Page Styles */
.about-us {
    background-color: var(--white);
}

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

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.about-intro p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mission, .vision {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission h3, .vision h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.mission i, .vision i {
    color: var(--primary-color);
}

.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

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

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

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

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

.team-member h3 {
    font-size: 1.3rem;
    margin: 20px 0 5px;
    color: var(--primary-dark);
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 5px;
    padding: 0 15px;
}

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

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0 20px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

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

.value-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.testimonials {
    background-color: var(--light-bg);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

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

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    transform: rotate(45deg);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-left: 20px;
}

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

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

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

/* Contact Page Styles */
.contact-section {
    background-color: var(--white);
}

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

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-contact {
    margin-top: 30px;
}

.social-contact h3 {
    margin-bottom: 15px;
}

.social-contact .social-icons a {
    background-color: rgba(255, 255, 255, 0.2);
}

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

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

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

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

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

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

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

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

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

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

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

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

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

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

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalopen 0.5s;
}

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

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.modal-content i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

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

.modal-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
}

/* Blog Post Styles */
.post-header {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 80px 0;
}

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

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.post-meta i {
    color: var(--primary-light);
}

.post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-summary {
    font-size: 1.2rem;
    max-width: 800px;
}

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

.post-content .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.post-main {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.featured-image {
    width: 100%;
    margin-bottom: 30px;
}

.featured-image img {
    width: 100%;
}

.table-of-contents {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.table-of-contents h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.table-of-contents ul {
    list-style-type: disc;
    padding-left: 20px;
}

.table-of-contents ul li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: var(--primary-color);
    transition: var(--transition);
}

.table-of-contents a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.post-section {
    margin-bottom: 50px;
}

.post-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

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

.post-section ul, .post-section ol {
    margin: 0 0 20px 20px;
    color: var(--text-color);
}

.post-section ul {
    list-style-type: disc;
}

.post-section ol {
    list-style-type: decimal;
}

.post-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.post-sidebar {
    align-self: start;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.author-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

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

.recent-posts ul li {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.recent-posts ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-posts ul li a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-posts ul li img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.recent-posts ul li h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.recent-posts ul li a:hover h4 {
    color: var(--primary-color);
}

.recent-posts ul li span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter input {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.sidebar-newsletter .btn {
    width: 100%;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-bg);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

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

.share-post {
    margin-top: 40px;
    text-align: center;
}

.share-post h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

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

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.nav-previous, .nav-next {
    max-width: 45%;
}

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

.nav-previous a span, .nav-next a span {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.nav-previous a h4, .nav-next a h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

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

.nav-next {
    text-align: right;
}

.cta-box {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.cta-box p {
    margin-bottom: 20px;
}

.course-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
}

.course-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.course-data p {
    margin-bottom: 5px;
}

.course-rating {
    text-align: right;
}

.rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
}

.course-description h4 {
    margin: 20px 0 10px;
    color: var(--primary-dark);
}

.course-description ul {
    margin-bottom: 15px;
}

.info-box {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.info-box ul {
    margin-left: 20px;
}

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

.alert-box {
    background-color: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: var(--border-radius);
}

.alert-box h4 {
    color: #856404;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-box p {
    color: #856404;
    margin: 0;
}

.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.price-range {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.price-item {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.price-header h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

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

.testimonial-box {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    position: relative;
}

.testimonial-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.testimonial-box p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-box span {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary-dark);
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.checklist-box {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.checklist input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checklist label {
    cursor: pointer;
    flex: 1;
}

/* Quote Box Style */
.quote-box {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    position: relative;
}

.quote-box blockquote {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding: 0 30px;
}

.quote-box blockquote::before,
.quote-box blockquote::after {
    content: '"';
    position: absolute;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
}

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

.quote-box blockquote::after {
    bottom: -20px;
    right: 0;
}

.quote-box cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary-dark);
    font-style: normal;
    margin-top: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .post-content .container {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        text-align: center;
    }
    
    .post-card.large {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: var(--white);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .burger {
        display: block;
    }
    
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active .line2 {
        opacity: 0;
    }
    
    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 2.2rem;
    }
    
    .post-meta {
        justify-content: center;
    }
    
    .post-summary {
        text-align: center;
    }
    
    .post-main {
        padding: 25px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .feature-grid, .post-grid, .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-previous, .nav-next {
        max-width: 100%;
        text-align: center;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

/* Chart.js styling */
canvas {
    max-width: 100%;
    height: auto !important;
}

/* Add additional post-specific styles */
/* ... (additional content-specific styles can be added here) */

/* Category badges */
.categories a {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: var(--transition);
}

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

/* Additional styling for certificates article */
.cert-card {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cert-rank {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-shrink: 0;
}

.cert-content {
    padding: 20px;
    flex-grow: 1;
}

.cert-content h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.cert-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.cert-details p {
    margin: 0;
}

.cert-value {
    margin-bottom: 15px;
}

.value-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cert-description {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 15px;
    border-radius: var(--border-radius);
}

/* Alternatives section */
.alternative {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

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

.alternative-value {
    margin-top: 15px;
}

.value-bar {
    height: 8px;
    background-color: #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.value-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
}

/* Decision framework */
.decision-framework {
    margin: 30px 0;
}

.decision-framework h3 {
    margin: 20px 0 15px;
    color: var(--primary-dark);
}

.decision-framework ul {
    margin-left: 0;
}

.decision-framework ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.decision-framework ul li i {
    flex-shrink: 0;
}

.fa-check-circle {
    color: var(--success-color);
}

.fa-times-circle {
    color: var(--danger-color);
}

/* Education programs in Mexico */
.program-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.program-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.university-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.program-header h3 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.university {
    color: var(--primary-color);
    font-weight: 600;
}

.program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.02);
    padding: 15px;
    border-radius: var(--border-radius);
}

.program-details p {
    margin: 0;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Challenges in education */
.challenge-card {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

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

.challenge-card h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

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

.indicator {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
}

.indicator h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.indicator-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Initiatives section */
.initiative {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
}

.initiative h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.initiative h3 i {
    color: var(--primary-color);
}

.initiative-result {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.result-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.result-value {
    color: var(--primary-color);
}

/* Future trends */
.trend {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.trend h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.trend-timeline {
    margin-top: 15px;
    text-align: right;
}

.timeline-marker {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.short {
    background-color: #d1e7dd;
    color: #0f5132;
}

.medium {
    background-color: #fff3cd;
    color: #856404;
}

.long {
    background-color: #f8d7da;
    color: #842029;
}

.expert-opinion {
    margin: 30px 0;
}

.expert-opinion h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.opinion {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    position: relative;
}

.opinion p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

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

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

.opinion p::after {
    bottom: -15px;
    right: 0;
}

.opinion cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary-dark);
    font-style: normal;
}

/* Tools and resources page styles */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.tool-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tool-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}

.tool-header h3 {
    margin: 0;
    color: var(--primary-dark);
}

.tool-details {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

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

.tool-details p:last-child {
    margin-bottom: 0;
}

.tool-description {
    margin-bottom: 20px;
    flex-grow: 1;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    align-self: flex-start;
}

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

.tip-box {
    background-color: #d1e7dd;
    border-left: 4px solid #198754;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.tip-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f5132;
    margin-bottom: 10px;
}

.tip-box p {
    color: #0f5132;
    margin: 0;
}

.libraries-table {
    margin: 30px 0;
    overflow-x: auto;
}

.libraries-table table {
    width: 100%;
    border-collapse: collapse;
}

.libraries-table th,
.libraries-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.libraries-table th {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
}

.libraries-table td {
    vertical-align: middle;
}

.library-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    margin-right: 10px;
    vertical-align: middle;
}

.level {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.beginner {
    background-color: #d1e7dd;
    color: #0f5132;
}

.intermediate {
    background-color: #fff3cd;
    color: #856404;
}

.advanced {
    background-color: #f8d7da;
    color: #842029;
}

.doc {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.yes {
    background-color: #d1e7dd;
    color: #0f5132;
}

.partial {
    background-color: #fff3cd;
    color: #856404;
}

.no {
    background-color: #f8d7da;
    color: #842029;
}

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

.dataset-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
}

.dataset-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.dataset-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.dataset-header h3 {
    margin: 0;
    color: var(--primary-dark);
}

.dataset-description {
    margin-bottom: 20px;
}

.dataset-features {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

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

.feature-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-value {
    color: var(--primary-color);
}

.dataset-examples {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.dataset-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.resources-section {
    margin: 30px 0;
}

.resources-section h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.resources-list {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.resources-list li {
    border-bottom: 1px solid var(--border-color);
}

.resources-list li:last-child {
    border-bottom: none;
}

.resources-list li a {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    color: var(--text-color);
    transition: var(--transition);
}

.resources-list li a:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.resource-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.resource-description {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: right;
}

.resources-tabs {
    margin: 30px 0;
}

.tabs-header {
    display: flex;
    overflow-x: auto;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

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

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

.resource-item h4 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.resource-item p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.resource-item p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
}

.resource-item a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.community-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
}

.community-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.community-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.community-header h3 {
    margin: 0;
    color: var(--primary-dark);
}

.community-description {
    margin-bottom: 20px;
}

.community-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.community-channels {
    display: flex;
    gap: 15px;
}

.community-channels a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.online-platforms {
    margin: 30px 0;
}

.online-platforms h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--text-color);
    transition: var(--transition);
}

.platform-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.platform-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.scholarship-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
}

.scholarship-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.scholarship-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.scholarship-header h3 {
    margin: 0;
    color: var(--primary-dark);
}

.scholarship-details {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

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

.scholarship-details p:last-child {
    margin-bottom: 0;
}

.scholarship-description {
    margin-bottom: 15px;
}

.scholarship-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.financial-aid-tips {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.financial-aid-tips h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.financial-aid-tips ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.financial-aid-tips li {
    margin-bottom: 10px;
}

.financial-aid-tips li:last-child {
    margin-bottom: 0;
}
