/* 
  FinWomen - Financial Success for Women in Germany
  Main Stylesheet
*/

/* Base Styles and Typography */
:root {
  --primary-color: #9d4edd;
  --primary-dark: #7b2cbf;
  --primary-light: #c77dff;
  --secondary-color: #3a506b;
  --accent-color: #ff8c42;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 6px;
  --container-width: 1200px;
  --header-height: 80px;
}

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

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

/* Button Styles */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

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

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

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

.btn-tertiary:hover {
  background-color: var(--primary-light);
  color: white;
  border-color: var(--primary-light);
}

/* Header and Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

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

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

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

nav ul li a:hover, nav ul li a.active {
  color: var(--primary-color);
}

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

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

/* Hero Section */
.hero {
  background-color: var(--background-alt);
  padding: 80px 0;
}

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

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h1 {
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-size: 2.8rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
}

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

/* Event Countdown Section */
.event-countdown {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.event-countdown h2 {
  color: white;
  margin-bottom: 30px;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.countdown-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 20px;
  min-width: 100px;
}

.countdown-item span {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

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

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

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

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

.post-card {
  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 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.post-content {
  padding: 20px;
}

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

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

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

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

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

/* Testimonials Section */
.testimonials {
  background-color: var(--background-alt);
  padding: 80px 0;
}

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

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

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

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  margin: 0;
  color: var(--text-light);
}

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

.page-header h1 {
  color: white;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
}

/* Blog List Page */
.blog-content {
  padding: 80px 0;
}

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

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

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

.blog-image {
  height: 240px;
  overflow: hidden;
}

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

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

.blog-text {
  padding: 25px;
}

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

.blog-text h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.blog-text p {
  margin-bottom: 20px;
}

/* Subscribe Section */
.subscribe {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0;
}

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

.subscribe-content h2 {
  color: white;
  margin-bottom: 20px;
}

.subscribe-content p {
  margin-bottom: 30px;
}

.subscribe-form {
  display: flex;
}

.subscribe-form input {
  flex: 1;
  padding: 12px 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;
  padding: 0 20px;
}

/* Blog Post Page */
.blog-post {
  padding: 80px 0;
}

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

.post-header h1 {
  margin-bottom: 15px;
}

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

.post-meta span {
  margin-right: 15px;
}

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

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

.post-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  margin-bottom: 30px;
}

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

.post-content h3 {
  margin-top: 30px;
  color: var(--secondary-color);
}

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

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

blockquote {
  background-color: var(--background-alt);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

blockquote p {
  font-style: italic;
  margin-bottom: 10px;
}

blockquote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

.info-box {
  background-color: rgba(157, 78, 221, 0.1);
  border: 1px solid var(--primary-light);
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 30px 0;
}

.info-box h4 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.info-box p:last-child, .info-box ul:last-child {
  margin-bottom: 0;
}

.info-box table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.info-box th, .info-box td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--primary-light);
}

.info-box th {
  background-color: rgba(157, 78, 221, 0.2);
}

.conclusion {
  margin-top: 50px;
  padding: 30px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
}

.conclusion h2 {
  margin-top: 0;
}

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

.tag-label {
  margin-right: 10px;
  font-weight: 600;
}

.tag {
  background-color: var(--background-alt);
  color: var(--text-color);
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.tag:hover {
  background-color: var(--primary-light);
  color: white;
}

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

.prev-post, .next-post {
  max-width: 45%;
}

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

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

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

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

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

.related-post-card h4 {
  padding: 15px 15px 5px;
  font-size: 1.1rem;
}

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

/* About Page */
.about-mission {
  padding: 80px 0;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.mission-text {
  flex: 1;
}

.mission-image {
  flex: 1;
}

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

.about-values {
  background-color: var(--background-alt);
  padding: 80px 0;
}

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

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

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

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

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

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

.team-section {
  padding: 80px 0;
}

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

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 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);
}

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

.team-member h3 {
  margin: 15px 15px 5px;
}

.team-member p {
  padding: 0 15px;
  margin-bottom: 10px;
}

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

.social-links {
  display: flex;
  padding: 0 15px 15px;
  gap: 10px;
}

.social-links a {
  color: var(--text-light);
  transition: var(--transition);
}

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

.about-stats {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
}

.about-stats h2 {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

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

.stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
}

.stat-card h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.stat-card p {
  margin: 0;
  font-size: 1.1rem;
}

/* Contact Page */
.contact-content {
  padding: 80px 0;
}

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

.contact-info h2, .contact-form-container h2 {
  margin-bottom: 30px;
}

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

.info-icon {
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}

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

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

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

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

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

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

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.2);
}

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

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

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

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

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

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

.faq-section {
  background-color: var(--background-alt);
  padding: 80px 0;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.faq-item {
  background-color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-light);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  position: relative;
  background-color: white;
  margin: 10% auto;
  padding: 0;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 90%;
  max-width: 500px;
  animation: modalopen 0.4s;
}

@keyframes modalopen {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

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

.thank-you-content {
  padding: 30px;
  text-align: center;
}

.thank-you-content svg {
  color: var(--success-color);
  margin-bottom: 20px;
}

.thank-you-content h2 {
  margin-bottom: 15px;
}

.thank-you-content p {
  margin-bottom: 25px;
}

.modal-close-btn {
  display: inline-block;
}

/* Interesting Facts Section */
.interesting-facts {
  padding: 80px 0;
  background-color: var(--background-alt);
}

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

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

.fact-card {
  background-color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: flex-start;
}

.fact-icon {
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.fact-card p {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 0;
}

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

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

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

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

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

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

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

.footer-links ul li a:hover {
  opacity: 1;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  opacity: 0.8;
}

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

.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-social .social-icons a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-social .social-icons a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

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

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: white;
  opacity: 0.7;
  margin: 0 10px;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  opacity: 1;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-content p {
  margin: 10px 0;
  flex: 1 0 100%;
}

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

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

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

.accept-btn:hover {
  background-color: #218838;
}

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

.settings-btn:hover {
  background-color: #138496;
}

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

.decline-btn:hover {
  background-color: #c82333;
}

.cookie-more-info {
  margin-left: 10px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .mission-content {
    flex-direction: column;
  }
  
  .mission-text {
    order: 2;
  }
  
  .mission-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 15px 0;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  #countdown {
    flex-wrap: wrap;
  }
  
  .countdown-item {
    flex: 1 0 40%;
    margin-bottom: 15px;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .subscribe-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 15px;
  }
  
  .prev-post, .next-post {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-more-info {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .posts-grid, .blog-grid, .values-grid, .team-grid, .stats-grid, .facts-grid, .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header h1 {
    font-size: 1.8rem;
  }
  
  .post-meta span {
    display: block;
    margin-bottom: 5px;
  }
  
  .post-intro {
    font-size: 1.1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
