/* Base Styles */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #45b5c4;
    --accent-color: #ff7a3d;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --light-text-color: #6c757d;
    --border-color: #e9ecef;
    --hover-color: #1d4183;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
}

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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.6rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

.btn-tertiary:hover {
    background-color: #e9ecef;
    color: var(--dark-color);
}

/* Header */
header {
    background-color: 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: 1.5rem 2rem;
}

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

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

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

.navbar a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar a i {
    font-size: 1.4rem;
}

.navbar a:hover, .navbar a.active {
    color: var(--primary-color);
    background-color: rgba(44, 90, 160, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 3rem;
    height: 0.3rem;
    background-color: var(--dark-color);
    border-radius: 0.3rem;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: 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;
    padding: 10rem 0;
    text-align: center;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
}

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

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Featured Posts */
.featured-posts {
    padding: 8rem 0;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.featured-posts h2:after {
    content: '';
    display: block;
    width: 8rem;
    height: 0.4rem;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 0.2rem;
}

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

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

.post-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.post-content {
    padding: 2rem;
}

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

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

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

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(0.5rem);
}

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

/* Daily Quote */
.daily-quote {
    background-color: var(--light-color);
    padding: 6rem 0;
}

.quote-container {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.quote-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quote-container h2 i {
    font-size: 2.4rem;
}

blockquote {
    font-size: 2.2rem;
    font-style: italic;
    position: relative;
    margin-bottom: 2rem;
    padding: 0 4rem;
}

blockquote:before {
    content: open-quote;
    font-size: 8rem;
    position: absolute;
    left: 0;
    top: -2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

blockquote cite {
    display: block;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--light-text-color);
}

/* This Day in History */
.this-day-in-history {
    padding: 6rem 0;
}

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

.history-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.history-container h2 i {
    font-size: 2.4rem;
}

.history-content {
    display: flex;
    gap: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.history-date {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
    min-width: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-event p {
    margin-bottom: 1rem;
}

.history-event p:last-child {
    margin-bottom: 0;
}

/* Newsletter */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.newsletter p {
    margin-bottom: 3rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 60rem;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

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

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 6rem;
}

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

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

.footer-logo p {
    opacity: 0.8;
}

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

.footer-links h3:after, .footer-contact h3:after, .footer-social h3:after {
    content: '';
    display: block;
    width: 4rem;
    height: 0.3rem;
    background-color: var(--accent-color);
    margin-top: 1rem;
    border-radius: 0.2rem;
}

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

.footer-links a, .footer-contact a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-top: 0.4rem;
}

.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(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: white;
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 2rem;
    z-index: 1001;
    display: flex;
    justify-content: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    padding: 0 2rem;
}

.cookie-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cookie-more {
    color: var(--accent-color);
    font-weight: 600;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/page-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.8rem;
    opacity: 0.9;
}

/* Blog List */
.blog-list {
    padding: 8rem 0;
}

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

.blog-card {
    display: flex;
    gap: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    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.15);
}

.blog-image {
    flex: 0 0 35%;
    overflow: hidden;
}

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

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

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

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text-color);
    font-size: 1.4rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.blog-content p {
    margin-bottom: 2rem;
    flex: 1;
}

.blog-content .btn {
    align-self: flex-start;
}

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

.about-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

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

.about-text h2 {
    margin-bottom: 2rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

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

.mission h2, .vision h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
}

.team-section {
    margin-bottom: 6rem;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

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

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

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

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

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

.team-member h3 {
    padding: 1.5rem 2rem 0.5rem;
    margin-bottom: 0;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 2rem;
    margin-bottom: 1rem;
}

.team-member p {
    padding: 0 2rem 2rem;
    margin-bottom: 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

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

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

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

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

.value-item i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    margin-bottom: 1.5rem;
}

.value-item p {
    margin-bottom: 0;
}

/* Contact Page */
.contact-section {
    padding: 8rem 0;
}

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

.contact-info {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

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

.contact-item i {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.contact-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

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

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

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

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

.form-group label {
    font-weight: 600;
}

.form-group .required {
    color: #dc3545;
}

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

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

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

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

.map-section {
    padding-bottom: 8rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.map-container iframe {
    border: 0;
}

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

.modal-content {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    max-width: 50rem;
    text-align: center;
    position: relative;
}

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

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

.success-icon {
    font-size: 6rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
}

.modal-content p {
    margin-bottom: 2.5rem;
}

/* Privacy Policy and Terms Pages */
.privacy-content, .terms-content {
    padding: 8rem 0;
}

.policy-container {
    max-width: 90rem;
    margin: 0 auto;
}

.policy-intro {
    margin-bottom: 4rem;
}

.last-updated {
    color: var(--light-text-color);
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 4rem;
}

.policy-section h2 {
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.policy-section h3 {
    margin: 2.5rem 0 1.5rem;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 1.6rem;
    padding-left: 2rem;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 0.8rem;
}

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

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

.contact-info-privacy, .contact-info-terms {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

/* Blog Post Page */
.post-full {
    padding: 8rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

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

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

.post-content {
    max-width: 80rem;
    margin: 0 auto;
}

.post-content h2, .post-content h3, .post-content h4 {
    margin-top: 4rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.6rem;
    padding-left: 2rem;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 0.8rem;
}

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

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

.post-quote {
    margin: 4rem 0;
}

.image-with-caption {
    margin: 3rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-with-caption img {
    width: 100%;
    height: auto;
}

.caption {
    background-color: var(--light-color);
    padding: 1.5rem;
    font-size: 1.4rem;
    color: var(--light-text-color);
    font-style: italic;
}

.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.post-tags a {
    display: inline-block;
    background-color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

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

.post-share a {
    color: var(--light-text-color);
    margin-left: 1rem;
    font-size: 1.8rem;
    transition: var(--transition);
}

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

.post-navigation {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.prev-post, .next-post {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.prev-post a, .next-post a {
    color: var(--text-color);
    display: block;
}

.prev-post:hover a, .next-post:hover a {
    color: white;
}

.prev-post span, .next-post span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.prev-post p, .next-post p {
    font-weight: 600;
    margin-bottom: 0;
}

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

.next-post span {
    justify-content: flex-end;
}

.related-posts {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.related-posts h2:after {
    content: '';
    display: block;
    width: 8rem;
    height: 0.4rem;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 0.2rem;
}

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }

    header .container {
        padding: 1rem 2rem;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background-color: white;
        flex-direction: column;
        padding: 8rem 2rem 2rem;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .navbar.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.5rem, 0.6rem);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.5rem, -0.6rem);
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .blog-card {
        flex-direction: column;
    }

    .blog-image {
        flex: none;
        height: 25rem;
    }

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

    .history-content {
        flex-direction: column;
    }

    .history-date {
        width: 100%;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .next-post {
        text-align: left;
    }

    .next-post span {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 55%;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    .hero {
        padding: 8rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .post-footer {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    blockquote {
        padding: 0 2rem;
    }
}
