/* Base Styles */
:root {
    --primary-color: #e74c3c;
    --primary-dark: #c0392b;
    --secondary-color: #3498db;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --gray-color: #95a5a6;
    --text-color: #333333;
    --border-color: #ddd;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
}

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

body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

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

ul {
    list-style: none;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

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

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

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

.secondary-btn:hover {
    background-color: #2980b9;
    color: white;
}

.tertiary-btn {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.tertiary-btn:hover {
    background-color: #dfe6e9;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

/* Language Switcher */
.language-switcher {
    position: relative;
}

#language-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 10px 0;
    width: 150px;
    box-shadow: var(--box-shadow);
    display: none;
    z-index: 10;
}

.language-switcher:hover .language-options {
    display: block;
}

.language-options a {
    display: block;
    padding: 8px 15px;
    color: var(--text-color);
}

.language-options a:hover {
    background-color: var(--light-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 20px;
    background-color: var(--light-color);
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

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

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

.hero-image {
    flex: 1;
    text-align: right;
}

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

/* Featured Posts Section */
.featured-posts {
    padding: 60px 20px;
    background-color: white;
}

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

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.post-card {
    background: white;
    border-radius: 8px;
    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.1);
}

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

.post-content {
    padding: 20px;
}

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

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

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

.read-more:hover {
    text-decoration: underline;
}

/* Poll Section */
.poll-section {
    background-color: var(--light-color);
    padding: 60px 20px;
}

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

.poll-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.poll-container h3 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark-color);
}

.poll-option {
    margin-bottom: 15px;
}

.poll-option input[type="radio"] {
    margin-right: 10px;
}

.poll-form button {
    margin-top: 20px;
    display: block;
    width: 100%;
}

.hidden {
    display: none;
}

#poll-results h4 {
    margin: 20px 0 15px;
    text-align: center;
}

.result-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.genre {
    width: 80px;
}

.bar-container {
    flex: 1;
    height: 25px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin: 0 10px;
    position: relative;
}

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

.percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 20px;
    background-color: var(--dark-color);
    text-align: center;
}

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

.newsletter h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

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

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

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

#newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 20px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    margin-bottom: 20px;
    min-width: 150px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: white;
}

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

.footer-column ul li a {
    color: var(--light-color);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-column ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: white;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-content {
    padding: 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.cookie-content p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

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

.cookie-content a {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Blog Page Styles */
.page-header {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

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

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

.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: 300px;
}

.search-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

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

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

.categories span {
    font-weight: 600;
    margin-right: 10px;
}

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

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

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.blog-image {
    flex: 1;
    min-width: 300px;
}

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

.blog-info {
    flex: 2;
    padding: 30px;
}

.blog-meta {
    display: flex;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.blog-meta span {
    margin-right: 20px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-info h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-info p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

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

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

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

/* About Page Styles */
.about-intro, .about-mission {
    padding: 60px 20px;
}

.about-intro .container, .about-mission .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image, .mission-image {
    flex: 1;
    min-width: 300px;
}

.about-image img, .mission-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.about-content, .mission-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2, .mission-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--dark-color);
}

.about-content p, .mission-content p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.mission-list {
    margin-top: 30px;
}

.mission-list li {
    display: flex;
    margin-bottom: 30px;
}

.mission-list li i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.mission-list li div h3 {
    margin-bottom: 10px;
}

.mission-list li div p {
    color: var(--gray-color);
}

.team-section, .partners-section, .cta-section {
    padding: 60px 20px;
    background-color: var(--light-color);
}

.team-section h2, .partners-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--dark-color);
}

.partners-section p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.member-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.team-member h3 {
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-bio {
    padding: 0 20px;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

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

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

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

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner img {
    max-width: 80%;
    max-height: 60px;
}

.cta-section {
    text-align: center;
    background-color: var(--dark-color);
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 20px;
}

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

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

.contact-info p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 5px;
    color: var(--gray-color);
}

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

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

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

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

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

.map-section {
    padding: 60px 20px;
    background-color: var(--light-color);
}

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

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

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

.faq-section {
    padding: 60px 20px;
}

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

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    transition: var(--transition);
}

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

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

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 100px auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.modal-content h2 {
    margin-bottom: 15px;
}

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

/* Blog Post Styles */
.blog-post {
    padding: 60px 0;
}

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

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

.post-category {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-date, .post-author {
    color: var(--gray-color);
    font-size: 0.95rem;
}

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

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

.post-share span {
    font-weight: 600;
}

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

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

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

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

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

.post-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 20px;
    color: var(--dark-color);
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 10px;
}

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

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

.post-image {
    margin: 30px 0;
    text-align: center;
}

.post-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.post-image figcaption {
    margin-top: 10px;
    color: var(--gray-color);
    font-size: 0.9rem;
    font-style: italic;
}

blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 5px solid var(--primary-color);
    background-color: var(--light-color);
    font-style: italic;
    color: var(--dark-color);
}

.post-callout {
    margin: 30px 0;
    padding: 25px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.post-callout h3, .post-callout h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.post-callout ul, .post-callout ol {
    margin-bottom: 0;
}

.post-conclusion {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.post-author-bio {
    display: flex;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
}

.author-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 20px;
}

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

.author-info {
    flex: 1;
}

.author-info h3 {
    margin-bottom: 5px;
}

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

.author-social {
    margin-top: 15px;
}

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

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

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.back-to-blog {
    color: var(--gray-color);
    font-weight: 600;
}

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

.prev-post, .next-post {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 600;
}

.prev-post i, .next-post i {
    margin: 0 8px;
}

.related-posts {
    margin-bottom: 50px;
}

.related-posts h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--dark-color);
}

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

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

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

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

.related-post h3 {
    padding: 15px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 15px 10px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav-links {
        margin-bottom: 15px;
    }
    
    .nav-links li {
        margin-left: 15px;
    }
    
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    #newsletter-form {
        flex-direction: column;
    }
    
    #newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    #newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .about-intro .container, .about-mission .container {
        flex-direction: column;
    }
    
    .about-image, .mission-image {
        margin-bottom: 30px;
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        min-width: 100%;
        height: 200px;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-nav-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .nav-links li {
        margin-left: 10px;
        font-size: 0.9rem;
    }
    
    .blog-info {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
