/* Base Styles */
:root {
  --primary-color: #6a3de8;
  --primary-dark: #5125c1;
  --secondary-color: #ff7b54;
  --accent-color: #24d5c6;
  --dark-color: #1a1a2e;
  --light-color: #f5f5f7;
  --text-color: #333;
  --text-light: #777;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

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

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

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

p {
  margin-bottom: 1.5rem;
}

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

/* Typography */
h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Buttons */
.cta-button, .submit-btn, .page-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.cta-button:hover, .submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Header and Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

nav {
  display: flex;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: -5px;
  transition: width 0.3s;
}

.nav-links a:hover:after, .nav-links a.active:after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-color);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  padding: 2rem 5%;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-content h1 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.hero-content h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 600px;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Featured Posts Section */
.featured-posts {
  padding: 5rem 5%;
  background-color: white;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-color);
}

.post-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.4rem;
}

.post-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

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

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

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

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

.view-all a {
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.view-all a:hover {
  background: var(--primary-color);
  color: white;
}

/* CTA Section */
.cta-section {
  padding: 5rem 5%;
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
  text-align: center;
  color: white;
}

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

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
}

.cta-button:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Checklist Section */
.checklist-section {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

.checklist-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.checklist {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.checklist-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.checklist-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checklist-item input[type="checkbox"] {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
}

.checklist-item label {
  font-size: 1.1rem;
  color: var(--text-color);
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 5% 2rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  background: white;
  border-radius: 50%;
  padding: 5px;
}

.footer-links h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

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

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

.social-icon {
  width: 20px;
  height: 20px;
  fill: white;
  transition: var(--transition);
}

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-content p {
  margin-bottom: 1rem;
  text-align: center;
}

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

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

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

.customize {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.customize:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.reject {
  background-color: transparent;
  color: white;
}

.reject:hover {
  text-decoration: underline;
}

.cookie-link {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.cookie-link:hover {
  text-decoration: underline;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalIn 0.5s;
}

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

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

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

.modal h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

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

.thanks-content {
  text-align: center;
}

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

.ok-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

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

/* About Page */
.about-hero {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
}

.about-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

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

.about-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.our-story {
  padding: 5rem 5%;
  background-color: white;
}

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

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

.team-section {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.team-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.team-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team-card h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.4rem;
}

.team-card p {
  color: var(--text-light);
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

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

.values-section {
  padding: 5rem 5%;
  background-color: white;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: var(--light-color);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.value-card h3 {
  margin-bottom: 1rem;
}

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

/* Blog Page */
.blog-hero {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
}

.blog-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.blog-grid {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.search-box input {
  border: none;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  flex: 1;
}

.search-box input:focus {
  outline: none;
}

.search-btn {
  background: var(--primary-color);
  border: none;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
}

.search-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cat-btn {
  padding: 0.5rem 1.2rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

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

.posts-container {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.post-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

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

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

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

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

.post-content {
  padding: 2rem;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-category {
  color: var(--primary-color);
  font-weight: 600;
}

.post-title {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

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

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

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

.page-btn.next {
  width: auto;
  padding: 0 1rem;
  border-radius: var(--border-radius);
}

.page-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.newsletter-section {
  padding: 5rem 5%;
  background-color: white;
}

.newsletter-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  border-radius: var(--border-radius);
  color: white;
  box-shadow: var(--box-shadow);
  text-align: center;
}

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

.newsletter-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  padding: 0 1.5rem;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--dark-color);
}

.small-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Contact Page */
.contact-hero {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
}

.contact-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.contact-section {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

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

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

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.info-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.info-card h3 {
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.social-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

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

.social-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: var(--light-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  transition: var(--transition);
}

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

.social-link:hover .social-icon {
  fill: white;
}

.social-link .social-icon {
  fill: var(--primary-color);
  width: 20px;
  height: 20px;
  margin-right: 1rem;
}

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

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.checkbox-container input {
  margin-right: 10px;
  margin-top: 5px;
}

.submit-btn {
  grid-column: 1 / -1;
  justify-self: center;
}

.map-section {
  padding: 5rem 5%;
  background-color: white;
}

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

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

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.faq-section {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 3rem;
    max-width: 100%;
  }
  
  .hero-image {
    justify-content: center;
    max-width: 100%;
  }
  
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .post-card.featured {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 8vh;
    background-color: var(--dark-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    padding-top: 2rem;
  }
  
  .nav-links li {
    margin: 1rem 0;
  }
  
  .nav-links a {
    color: white;
  }
  
  .burger {
    display: block;
  }
  
  .nav-active {
    transform: translateX(0%);
  }
  
  .post-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Additional animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

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

.slide-in {
  animation: slideIn 0.5s ease-out;
}

/* Icon styles for footer */
.icon-location, .icon-phone, .icon-mail {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.icon-location:before {
  content: "📍";
}

.icon-phone:before {
  content: "📞";
}

.icon-mail:before {
  content: "✉️";
}
