/* Base Styles */
:root {
  --primary-color: #3d7068;
  --secondary-color: #f4a261;
  --accent-color: #e76f51;
  --light-color: #f8f9fa;
  --dark-color: #1a1a1a;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-radius: 5px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Open Sans', sans-serif;
}

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

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

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

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

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

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

ul {
  list-style: none;
}

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

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

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

.btn-primary:hover {
  background-color: #2c534d;
  color: white;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 80px 0;
}

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

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

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

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

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

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

.mobile-nav-toggle {
  display: none;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: var(--transition);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
}

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

/* Story Section */
.story {
  background-color: white;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  align-items: center;
}

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

.story h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Featured Posts */
.featured-posts {
  background-color: var(--light-gray);
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

.post-content {
  padding: 20px;
}

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

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

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

.post-meta {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

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

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

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* Expert Interview */
.expert-interview {
  background-color: white;
}

.expert-interview h2 {
  text-align: center;
  margin-bottom: 40px;
}

.interview-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 40px;
  align-items: start;
}

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

.question {
  color: var(--primary-color);
  margin-top: 20px;
}

.answer {
  margin-bottom: 30px;
}

/* Call to Action */
.cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.subscribe-form {
  display: flex;
  max-width: 500px;
  margin: 30px auto 0;
}

.subscribe-form input {
  flex-grow: 1;
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.subscribe-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--secondary-color);
}

.subscribe-form button:hover {
  background-color: var(--accent-color);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin-bottom: 40px;
}

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

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-links ul li a,
.footer-legal ul li a {
  color: var(--light-gray);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
  color: var(--secondary-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--light-gray);
}

.footer-contact svg {
  margin-right: 10px;
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 10px;
  color: white;
}

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

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  z-index: 1001;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.cookie-buttons button {
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 8px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
}

.cookie-buttons a {
  margin-left: 15px;
  color: var(--light-gray);
  align-self: center;
}

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

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

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

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

.page-header h1 {
  color: white;
}

.blog-search {
  margin-bottom: 40px;
}

.blog-search form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.blog-search input {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  font-size: 1rem;
}

.blog-search button {
  padding: 0 20px;
  background-color: white;
  border: none;
  cursor: pointer;
  color: var(--gray-color);
}

.blog-search button:hover {
  color: var(--primary-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}

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

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

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

.blog-details {
  padding: 25px;
}

.blog-details h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.blog-details h2 a {
  color: var(--dark-color);
}

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

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

/* Newsletter Section */
.newsletter {
  background-color: var(--light-gray);
}

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

.newsletter-form {
  display: flex;
  margin-top: 30px;
}

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

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Portfolio Page Styles */
.portfolio-filters {
  padding: 0 0 40px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.filter-btn {
  background-color: transparent;
  border: none;
  padding: 8px 15px;
  margin: 0 5px 10px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  border-radius: 50px;
}

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .item-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

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

.item-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* About Page Styles */
.about-story {
  background-color: white;
}

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

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

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin-top: 40px;
}

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

.approach-item:hover {
  transform: translateY(-10px);
}

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

.our-approach h2 {
  text-align: center;
  margin-bottom: 40px;
}

.team {
  background-color: var(--light-gray);
}

.team h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

.team-member:hover {
  transform: translateY(-10px);
}

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

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

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

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

.member-social {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

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

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

.testimonials {
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial {
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 0 15px;
}

.testimonial-content p {
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 2rem;
  position: absolute;
  color: var(--primary-color);
}

.testimonial-content p::before {
  left: 0;
  top: -10px;
}

.testimonial-content p::after {
  right: 0;
  bottom: -10px;
}

.testimonial-author {
  text-align: right;
  margin-top: 20px;
}

.testimonial-author h4 {
  margin-bottom: 0;
}

.testimonial-author p {
  color: var(--gray-color);
}

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

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

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

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

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

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

.social-icons {
  display: flex;
}

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

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

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

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

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

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

.form-group textarea {
  resize: vertical;
}

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

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

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

.map-section {
  padding-top: 0;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  color: var(--gray-color);
}

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

.post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

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

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.post-content h3 {
  margin-top: 30px;
  font-size: 1.3rem;
}

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

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 40px 0;
}

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

.post-tags a {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--light-gray);
  border-radius: 50px;
  margin: 5px;
  font-size: 0.9rem;
}

.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: 40px;
  height: 40px;
  background-color: var(--light-gray);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--dark-color);
}

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

.author-bio {
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 40px;
}

.author-image {
  margin-right: 30px;
}

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

.author-info h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: var(--gray-color);
}

.author-info h4 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

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

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

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

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

.related-posts h3 {
  text-align: center;
  margin-bottom: 30px;
}

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

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

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

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

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

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

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

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .posts-grid,
  .approach-grid,
  .team-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0 0 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .story-content,
  .interview-content,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image img {
    height: 250px;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .posts-grid,
  .approach-grid,
  .team-grid,
  .gallery-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .cookie-buttons a {
    margin-left: 0;
    margin-top: 10px;
    align-self: flex-start;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .subscribe-form button {
    border-radius: var(--border-radius);
  }
}
