/* Base Styles */
:root {
    --primary-color: #4e6bff;
    --primary-dark: #3a4cbe;
    --secondary-color: #ff7843;
    --accent-color: #32e6b3;
    --text-color: #333333;
    --text-light: #777777;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --border-color: #e1e1e1;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FFC107;
    --neon-glow: 0 0 10px rgba(78, 107, 255, 0.8), 0 0 20px rgba(78, 107, 255, 0.6), 0 0 30px rgba(78, 107, 255, 0.4);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

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

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

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

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.5rem;
}

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

/* Buttons */
.btn, button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

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

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

.btn-secondary:hover {
    background-color: #e35f2d;
}

.neon-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(78, 107, 255, 0.7);
    box-shadow: 0 0 10px rgba(78, 107, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.5s ease-out;
}

.neon-button:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow: var(--neon-glow);
}

.neon-button:hover::before {
    transform: scaleX(1);
}

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

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

.logo img {
    height: 5rem;
    width: auto;
}

nav ul {
    display: flex;
    gap: 3rem;
}

nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.6rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.1rem;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 12rem 0;
}

.hero h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    color: white;
}

.hero p {
    font-size: 2rem;
    max-width: 70rem;
    margin: 0 auto 3rem;
}

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

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-box {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box .icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
}

.feature-box .icon svg {
    width: 3rem;
    height: 3rem;
}

.feature-box h3 {
    margin-bottom: 1.5rem;
}

/* Latest Posts Section */
.latest-posts {
    padding: 8rem 0;
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.post-card {
    background-color: 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.15);
}

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

.post-content {
    padding: 2rem;
}

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

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

.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 1rem;
}

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

/* Subscription Section */
.subscription {
    background-color: var(--bg-dark);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.subscription h2 {
    color: white;
}

.subscription p {
    max-width: 60rem;
    margin: 0 auto 3rem;
}

.subscribe-form {
    display: flex;
    max-width: 60rem;
    margin: 0 auto 2rem;
}

.subscribe-form input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1.6rem;
}

.subscribe-form button {
    border-radius: 0 4px 4px 0;
    padding: 0 3rem;
}

.subscriber-count {
    font-size: 1.8rem;
}

#subscriber-number {
    font-weight: 700;
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 6rem 0 2rem;
}

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

.footer-logo img {
    height: 5rem;
    margin-bottom: 1.5rem;
}

.footer-links h3, .footer-legal h3, .footer-social h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .footer-legal a {
    color: #aaa;
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    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);
}

.social-icons svg {
    width: 2rem;
    height: 2rem;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 2rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 100rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.btn-cookie {
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-cookie.customize {
    background-color: #555;
    color: white;
}

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

.btn-cookie:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cookie-policy {
    font-size: 1.4rem;
}

.cookie-policy a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Page Banner */
.page-banner {
    background-color: var(--bg-dark);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.page-banner h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-content {
    padding: 6rem 0;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.search-box {
    display: flex;
    max-width: 40rem;
    width: 100%;
}

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

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

.search-box button svg {
    width: 2rem;
    height: 2rem;
}

.filter-categories {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-categories span {
    font-weight: 600;
}

.filter-categories a {
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    transition: var(--transition);
}

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

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

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

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 0;
    padding-bottom: 60%;
}

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

.blog-details {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem 0;
    font-size: 1.4rem;
}

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

.blog-date {
    color: var(--text-light);
}

.blog-content {
    padding: 1.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.blog-content .read-more {
    margin-top: auto;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}

.current-page {
    font-weight: 600;
}

.page-controls {
    display: flex;
    gap: 2rem;
}

.page-prev, .page-next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.page-prev.disabled, .page-next.disabled {
    color: var(--text-light);
    cursor: not-allowed;
}

.page-prev svg, .page-next svg {
    width: 2rem;
    height: 2rem;
}

/* About Page Styles */
.about-content {
    padding: 6rem 0;
}

.about-story, .about-values, .team-section, .stats-section {
    margin-bottom: 8rem;
}

.about-story h2, .about-values h2, .team-section h2, .stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card .icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
}

.value-card .icon svg {
    width: 3rem;
    height: 3rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

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

.social-links svg {
    width: 1.8rem;
    height: 1.8rem;
}

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

.stat-card {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

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

.cta-section {
    background-color: var(--bg-dark);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-cta {
    display: flex;
    gap: 1.5rem;
}

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

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

.social-cta svg {
    width: 2.2rem;
    height: 2.2rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 6rem 0;
}

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

.contact-info h2, .contact-form-container h2, .map-section h2 {
    margin-bottom: 3rem;
}

.info-blocks {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.info-block .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-block .icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.info-content h3 {
    margin-bottom: 0.5rem;
}

.info-content p, .info-content a {
    color: var(--text-light);
}

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

.social-contact h3 {
    margin-bottom: 2rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    color: var(--text-color);
    transition: var(--transition);
}

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

.social-link svg {
    width: 2rem;
    height: 2rem;
}

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

.form-group {
    margin-bottom: 2rem;
}

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

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

.form-group textarea {
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 0.5rem;
}

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

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 4rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

.thank-you-message {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    width: 8rem;
    height: 8rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.close-btn {
    margin-top: 2rem;
}

/* Blog Post Styles */
.post-content {
    padding: 6rem 0;
}

.post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.6rem;
}

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

.post-excerpt {
    font-size: 2rem;
    color: var(--text-light);
    line-height: 1.5;
}

.post-featured-image {
    max-width: 900px;
    margin: 0 auto 4rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.post-body {
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

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

.post-body p, .post-body ul, .post-body ol {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 1.7;
}

.post-body ul, .post-body ol {
    padding-left: 2.5rem;
}

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

.post-body strong {
    font-weight: 700;
}

.post-body a {
    text-decoration: underline;
}

.post-tags, .post-share {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags span, .post-share span {
    font-weight: 600;
    margin-right: 1rem;
}

.post-tags a {
    background-color: var(--bg-light);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: var(--text-light);
    font-size: 1.4rem;
    transition: var(--transition);
}

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

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

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

.post-share svg {
    width: 2rem;
    height: 2rem;
}

.author-box {
    max-width: 800px;
    margin: 0 auto 6rem;
    display: flex;
    gap: 2rem;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

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

.author-info h3 {
    margin-bottom: 0.5rem;
}

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

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

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

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

.author-social svg {
    width: 1.8rem;
    height: 1.8rem;
}

.related-posts {
    max-width: 1000px;
    margin: 0 auto 6rem;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

.related-card h3 {
    padding: 1.5rem;
    font-size: 1.8rem;
}

.post-navigation {
    max-width: 800px;
    margin: 0 auto;
}

.post-nav-links {
    display: flex;
    justify-content: space-between;
}

.prev-post, .next-post, .back-to-blog {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.prev-post svg, .next-post svg, .back-to-blog svg {
    width: 2rem;
    height: 2rem;
}

.event-calendar {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 4rem;
}

.event-calendar h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.event-list {
    list-style: none;
}

.event-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    header .container {
        position: relative;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .blog-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-box {
        width: 100%;
    }
    
    .filter-categories {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: 4px;
        margin-bottom: 1rem;
    }
    
    .subscribe-form button {
        border-radius: 4px;
        width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
}
