/* Base styles and variables */
:root {
    --primary-color: #2e5c8a;
    --primary-dark: #1d3b59;
    --primary-light: #3a7cb2;
    --secondary-color: #f39c12;
    --secondary-dark: #d68910;
    --secondary-light: #f5b041;
    --text-color: #333;
    --light-text: #666;
    --very-light-text: #999;
    --background-color: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --border-color: #e1e1e1;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --warning-color: #f1c40f;
    --info-color: #3498db;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul, ol {
    list-style-position: inside;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
}

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

p {
    margin-bottom: 1.5rem;
}

/* Container and sections */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Header and Navigation */
header {
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

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

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

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

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

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

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

/* Hero section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-color);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--background-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

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

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

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

/* What You'll Learn Section */
.what-youll-learn {
    padding: 80px 50px;
    background-color: var(--light-bg);
}

.what-youll-learn h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
}

.what-youll-learn h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.learn-item {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.learn-item .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.learn-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

/* Featured Posts Section */
.featured-posts {
    padding: 80px 50px;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
}

.featured-posts h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

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

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

.post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

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

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

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

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

.read-more:hover::after {
    width: 100%;
}

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

/* Fun Fact Section */
.fun-fact {
    background-color: var(--primary-color);
    padding: 60px 50px;
    text-align: center;
    color: var(--background-color);
}

.fact-container {
    max-width: 800px;
    margin: 0 auto;
}

.fun-fact h2 {
    color: var(--background-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.fun-fact p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--light-bg);
    padding: 70px 50px;
}

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

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

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

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 40px;
}

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

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--background-color);
    margin-bottom: 20px;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 1.2rem;
    color: var(--background-color);
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after,
.footer-legal h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ccc;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

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

.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%;
    transition: var(--transition);
}

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

.social-icons svg {
    fill: var(--background-color);
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
}

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

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.btn-cookie.customize {
    background-color: var(--info-color);
    color: white;
}

.btn-cookie.reject {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.cookie-policy-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: var(--secondary-light);
}

/* Blog Page Styles */
.blog-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/2.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-color);
}

.blog-hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--background-color);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    display: flex;
    max-width: 400px;
    width: 100%;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 0.95rem;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.filter-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-categories span {
    font-weight: 600;
    color: var(--light-text);
}

.filter-categories a {
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

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

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

.post-meta .date,
.post-meta .category {
    display: inline-flex;
    align-items: center;
}

.post-meta .category {
    background-color: var(--primary-light);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

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

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: white;
}

.pagination a.next {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
}

.pagination a.next i {
    margin-left: 5px;
}

/* About Page Styles */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-color);
}

.about-hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--background-color);
}

.about-info {
    padding: 80px 50px;
    background-color: var(--light-bg);
}

.about-story {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.about-story p {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.mission h3, .vision h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.mission h3::after, .vision h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.mission p, .vision p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.team-section {
    padding: 80px 50px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--light-text);
}

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

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

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

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

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

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

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

.social-links a:hover svg {
    fill: var(--background-color);
}

.social-links svg {
    fill: var(--primary-color);
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

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

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

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

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

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

/* Contact Page Styles */
.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/4.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-color);
}

.contact-hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--background-color);
}

.contact-info-section {
    padding: 80px 50px;
}

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

.contact-info, .contact-form {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h2, .contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.form-group textarea {
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-btn {
    width: 100%;
    padding: 15px;
}

.map-section {
    padding: 0 50px 80px;
}

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

.map-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

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

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

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

.modal-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.close-button:hover {
    color: var(--error-color);
}

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

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

.thank-you-message h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

.close-modal-btn {
    padding: 12px 30px;
}

/* Blog Post Page Styles */
.post-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.post-header {
    margin-bottom: 40px;
}

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

.post-header .post-meta {
    margin-bottom: 30px;
}

.post-header .post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-right: 20px;
    color: var(--light-text);
    font-size: 0.95rem;
}

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

.featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
}

.post-body h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.post-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.post-body blockquote {
    padding: 30px 40px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    font-style: italic;
    color: var(--light-text);
    font-size: 1.15rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

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

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

.info-box ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag-label {
    font-weight: 600;
    color: var(--light-text);
}

.tag {
    background-color: var(--light-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--light-text);
    transition: var(--transition);
}

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

.share-post {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

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

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

.share-icon:hover {
    background-color: var(--primary-color);
}

.share-icon:hover svg {
    fill: white;
}

.share-icon svg {
    fill: var(--light-text);
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.author-bio {
    display: flex;
    gap: 30px;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

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

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

.author-social {
    display: flex;
    gap: 10px;
}

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

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

.author-social a:hover svg {
    fill: white;
}

.author-social svg {
    fill: var(--primary-color);
    width: 15px;
    height: 15px;
    transition: var(--transition);
}

.related-posts {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.related-posts h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

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

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

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-content p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.comments {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.comments h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.comment-form {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
}

.comment-form h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comment {
    display: flex;
    gap: 20px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.comment-content {
    flex: 1;
}

.comment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--very-light-text);
}

.comment-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 10px;
}

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

.comment-actions a {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.reply-comment {
    margin-top: 20px;
    margin-left: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    header {
        padding: 15px 30px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .what-youll-learn,
    .featured-posts,
    .fun-fact,
    .newsletter,
    .about-info,
    .team-section,
    .values,
    .contact-info-section,
    .map-section {
        padding: 60px 30px;
    }
    
    .post-header h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        margin-top: 10px;
    }
    
    nav ul li {
        margin-left: 20px;
    }
    
    nav ul li:first-child {
        margin-left: 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .blog-hero,
    .about-hero,
    .contact-hero {
        height: 30vh;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .filter-categories {
        justify-content: center;
    }
    
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav ul li {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .post-header .post-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .post-header .post-meta span {
        margin-right: 0;
    }
    
    .comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .comment-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .comment-actions {
        justify-content: center;
    }
    
    .reply-comment {
        margin-left: 0;
    }
}
