/* Base Styles */
:root {
  --primary-color: #0a3d62;
  --secondary-color: #3c6382;
  --accent-color: #f6b93b;
  --light-color: #f8f9fa;
  --dark-color: #1e3799;
  --text-color: #333;
  --text-light: #6c757d;
  --border-color: #e9ecef;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --success-color: #38ada9;
  --danger-color: #e55039;
  --font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono: 'Roboto Mono', monospace;
}

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

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--primary-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;
}

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

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

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

ul, ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

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

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

.section-title:after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.3rem;
  background-color: var(--accent-color);
}

.section-subtitle {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text-light);
  margin-top: -2rem;
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Header and Navigation */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin-left: 3rem;
}

.main-menu a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  position: relative;
}

.main-menu a:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.main-menu a:hover:after,
.main-menu a.active:after {
  width: 100%;
}

.main-menu a.active {
  color: var(--primary-color);
  font-weight: 700;
}

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

.mobile-menu-toggle span {
  display: block;
  height: 0.3rem;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 0.2rem;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(10, 61, 98, 0.8), rgba(10, 61, 98, 0.8)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 10rem 0;
  text-align: center;
}

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

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

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

/* Services Section */
.services {
  padding: 8rem 0;
  background-color: var(--light-color);
}

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

.service-card {
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 3rem;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

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

.service-icon svg {
  width: 4rem;
  height: 4rem;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

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

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

.post-card {
  background-color: #fff;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

.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 h3 a {
  color: var(--text-color);
}

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

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

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

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: margin 0.3s ease;
}

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

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

/* CTA Section */
.cta {
  background: linear-gradient(rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.9)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 8rem 0;
  text-align: center;
}

.cta-content {
  max-width: 70rem;
  margin: 0 auto;
}

.cta h2 {
  color: #fff;
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.cta p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

/* Newsletter Section */
.newsletter {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.newsletter-content {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

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

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

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

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 0.4rem;
  font-size: 1.6rem;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 6rem 0 3rem;
}

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

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

.footer-info p {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.footer-nav h3,
.footer-links h3,
.footer-social h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.footer-nav ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-links li {
  margin-bottom: 1rem;
}

.footer-nav a,
.footer-links a {
  color: #ccc;
}

.footer-nav a:hover,
.footer-links a:hover {
  color: #fff;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.3s ease;
}

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

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

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -5px 15px var(--shadow-color);
  padding: 2rem;
  z-index: 1000;
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-content {
  max-width: 120rem;
  margin: 0 auto;
}

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

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

/* Page Header */
.page-header {
  background: linear-gradient(rgba(10, 61, 98, 0.8), rgba(10, 61, 98, 0.8)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  font-size: 4rem;
  margin-bottom: 1rem;
}

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

/* Blog Posts */
.blog-posts {
  padding: 8rem 0;
}

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

.blog-card {
  background-color: #fff;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

.blog-image {
  height: 25rem;
  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 {
  padding: 2.5rem;
}

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

.blog-date,
.blog-category {
  display: flex;
  align-items: center;
}

.blog-date:before,
.blog-category:before {
  content: '';
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background-color: currentColor;
  border-radius: 50%;
  margin-right: 0.5rem;
}

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

.blog-content h2 a {
  color: var(--text-color);
}

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

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

/* Single Blog Post */
.blog-post-container {
  padding: 8rem 0;
}

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

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

.post-header h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

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

.post-featured-image {
  margin-bottom: 4rem;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

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

.post-intro {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 3rem;
  border-left: 4px solid var(--primary-color);
  padding-left: 2rem;
}

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

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

.post-content p {
  margin-bottom: 2rem;
}

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

.post-content li {
  margin-bottom: 1rem;
}

.post-content img {
  margin: 3rem auto;
  border-radius: 0.6rem;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.post-cta {
  margin-top: 6rem;
  padding: 3rem;
  background-color: var(--light-color);
  border-radius: 0.6rem;
  text-align: center;
}

.post-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.post-cta p {
  margin-bottom: 2rem;
}

.post-navigation {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

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

.prev-post,
.next-post,
.back-to-blog {
  font-weight: 600;
}

.related-posts {
  margin-top: 6rem;
}

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

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

.related-post {
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

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

.related-post h4 {
  padding: 1.5rem;
  margin-bottom: 0;
  font-size: 1.6rem;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  margin-top: 0;
}

.about-image {
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.values-list {
  margin-top: 2rem;
}

.values-list li {
  margin-bottom: 1.5rem;
}

.about-history {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.timeline {
  position: relative;
  max-width: 70rem;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7.5rem;
  width: 0.2rem;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 15rem;
  margin-bottom: 5rem;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 7rem;
  height: 7rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.timeline-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.6rem;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.timeline-content h3 {
  margin-top: 0;
}

.team-section {
  padding: 8rem 0;
}

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

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

.team-member img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 2rem;
  border: 0.5rem solid var(--light-color);
  box-shadow: 0 5px 15px var(--shadow-color);
}

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

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

.team-member p:nth-child(3) {
  font-weight: 600;
  color: var(--primary-color);
}

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

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

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

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

.why-choose-us {
  padding: 8rem 0;
  background-color: var(--light-color);
}

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

.feature-card {
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 3rem;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

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

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

.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

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

.contact-info h2,
.contact-form-container h2 {
  margin-top: 0;
}

.info-item {
  display: flex;
  margin-bottom: 3rem;
}

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

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

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

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

.social-contact {
  margin-top: 4rem;
}

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

.contact-form {
  margin-top: 2rem;
}

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

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

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

.form-group.consent {
  display: flex;
  align-items: flex-start;
}

.form-group.consent input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.form-group.consent label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 1.4rem;
}

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

.map-container {
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

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

.modal.show {
  display: flex;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 0.6rem;
  max-width: 50rem;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.modal-body {
  padding: 3rem;
  text-align: center;
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background-color: var(--success-color);
  color: #fff;
}

.success-icon svg {
  width: 4rem;
  height: 4rem;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 9px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .timeline:before {
    left: 4.5rem;
  }
  
  .timeline-item {
    padding-left: 10rem;
  }
  
  .timeline-year {
    width: 5rem;
    height: 5rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 8px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 1001;
    box-shadow: 5px 0 15px var(--shadow-color);
  }
  
  .main-menu.show {
    left: 0;
  }
  
  .main-menu li {
    margin: 1.5rem 0;
  }
  
  .posts-grid,
  .blog-grid,
  .related-grid,
  .team-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 3.6rem;
  }
  
  .post-header h1 {
    font-size: 3.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .post-nav-links {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
