/* Base Styles and Variables */
:root {
  --primary-color: #5c2d91;
  --secondary-color: #00a4bd;
  --accent-color: #ff6b6b;
  --dark-color: #2a2a2a;
  --light-color: #f5f5f5;
  --text-color: #333333;
  --text-light: #777777;
  --border-color: #e0e0e0;
  --success-color: #4CAF50;
  --warning-color: #FFC107;
  --error-color: #F44336;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
  --footer-bg: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

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

/* Custom Border for Images */
.custom-border {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 3px solid var(--primary-color);
}

.custom-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(92, 45, 145, 0.3), transparent);
  z-index: 1;
  pointer-events: none;
}

.custom-border img {
  transition: transform 0.5s ease;
}

.custom-border:hover img {
  transform: scale(1.05);
}

/* Header Styles */
header {
  background-color: #fff;
  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;
  height: var(--header-height);
}

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

.logo img {
  height: 50px;
  width: auto;
  border-radius: 50%;
}

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 16px;
  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: width 0.3s ease;
}

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: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #ff4f4f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}

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

.featured-posts h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-color);
  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);
}

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

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

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

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

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

.post-info {
  padding: 20px;
}

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

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

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

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

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

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

.read-more:hover::after {
  margin-left: 10px;
}

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

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

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

.newsletter p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 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;
  background-color: var(--accent-color);
  padding: 0 25px;
}

/* Quick Stats Section */
.quick-stats {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

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

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  color: var(--primary-color);
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

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

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 60px 0 30px;
}

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

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

.footer-logo p {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.footer-contact svg {
  margin-right: 10px;
  color: var(--accent-color);
}

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

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

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

.social-icons svg {
  width: 18px;
  height: 18px;
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
  font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(40, 40, 40, 0.95);
  color: white;
  padding: 15px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-cookie.customize {
  background-color: var(--warning-color);
  color: var(--dark-color);
}

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

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

.cookie-more-info {
  font-size: 0.8rem;
  opacity: 0.8;
}

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

/* Blog Page Styles */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 50px 0;
  text-align: center;
}

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

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

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.post-card .post-content {
  padding: 30px 30px 30px 0;
}

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

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

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

/* Single Post Page */
.single-post {
  padding: 60px 0;
}

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

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.post-meta {
  display: flex;
  gap: 20px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.post-featured-image {
  margin-bottom: 30px;
}

.post-content {
  line-height: 1.8;
}

.post-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.post-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.post-content ul li {
  margin-bottom: 10px;
  list-style-type: disc;
  margin-left: 20px;
}

.post-image-secondary {
  margin: 30px 0;
}

.image-caption {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 10px;
  font-size: 0.9rem;
}

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

blockquote p {
  margin-bottom: 10px !important;
}

blockquote cite {
  font-style: normal;
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-conclusion {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 40px;
}

.post-tags {
  margin: 40px 0 20px;
}

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

.post-tags a {
  display: inline-block;
  background-color: #f0f0f0;
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-color);
  transition: var(--transition);
}

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

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

.post-share span {
  margin-right: 15px;
  font-weight: 600;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.post-share a:hover {
  transform: translateY(-3px);
}

.post-share a.email-share:hover {
  background-color: #333;
  color: white;
}

.post-share a:nth-child(2):hover {
  background-color: #3b5998;
  color: white;
}

.post-share a:nth-child(3):hover {
  background-color: #1da1f2;
  color: white;
}

.post-share a:nth-child(4):hover {
  background-color: #0077b5;
  color: white;
}

.post-navigation {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  margin-bottom: 40px;
}

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

.prev-post,
.next-post,
.back-to-blog {
  display: flex;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.prev-post svg,
.back-to-blog svg {
  margin-right: 10px;
}

.next-post svg {
  margin-left: 10px;
}

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

.related-posts {
  background-color: #f5f5f5;
  padding: 60px 0;
}

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

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

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

.related-post {
  background-color: white;
  border-radius: var(--border-radius);
  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.15);
}

.related-post .post-image {
  height: 180px;
}

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

.related-post .read-more {
  display: block;
  padding: 0 15px 15px;
}

/* About Page Styles */
.about-content {
  padding: 60px 0;
}

.about-intro,
.about-vision,
.team-section,
.partners-section {
  margin-bottom: 60px;
}

.about-intro h2,
.about-vision h2,
.team-section h2,
.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--dark-color);
  position: relative;
}

.about-intro h2::after,
.about-vision h2::after,
.team-section h2::after,
.partners-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-intro p,
.about-vision p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

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

.vision-item:hover {
  transform: translateY(-5px);
}

.vision-item svg {
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

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

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

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

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

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

.team-member .social-icons {
  padding: 0 20px 20px;
  justify-content: flex-start;
}

.team-member .social-icons a {
  background-color: #f0f0f0;
}

.team-member .social-icons a svg {
  color: var(--text-color);
}

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

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

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

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

.partner h3 {
  padding: 20px;
  font-size: 1.2rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.contact-info h2::after,
.contact-form-container h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.info-item svg {
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

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

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

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

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

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  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;
  transition: border-color 0.3s;
}

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

.form-group button {
  width: 100%;
}

.map-section {
  padding-bottom: 60px;
}

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

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

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

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

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

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal.show .modal-content {
  transform: translateY(0);
}

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

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

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

.modal h2 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

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

.close-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .post-card {
    grid-template-columns: 1fr;
  }

  .post-card .post-image {
    height: 250px;
  }

  .post-card .post-content {
    padding: 20px;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  header .container {
    flex-direction: column;
    height: auto;
    padding: 20px 15px;
  }

  .logo {
    margin-bottom: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 15px;
  }

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

  .featured-posts h2,
  .about-intro h2,
  .about-vision h2,
  .team-section h2,
  .partners-section h2,
  .contact-info h2,
  .contact-form-container h2 {
    font-size: 1.8rem;
  }

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

  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 15px;
  }

  .footer-links h3::after,
  .footer-contact h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact p {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

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

  .post-meta {
    flex-direction: column;
    gap: 5px;
  }

  .post-navigation .nav-links {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .featured-posts,
  .about-content,
  .blog-posts,
  .single-post,
  .contact-section {
    padding: 40px 0;
  }

  .post-header h1 {
    font-size: 1.8rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons button {
    width: 100%;
    margin-bottom: 5px;
  }
}
