/* Base Styles */
:root {
  --primary-color: #d32f2f;
  --secondary-color: #b71c1c;
  --accent-color: #ff6659;
  --dark-color: #263238;
  --light-color: #f5f5f5;
  --gray-color: #757575;
  --text-color: #212121;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: 'Georgia', serif;
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

ul, ol {
  list-style: none;
}

button, .btn {
  cursor: pointer;
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

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

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

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

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

section {
  padding: 5rem 0;
}

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

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

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

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 1.5rem;
}

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

nav ul li a:hover {
  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%;
}

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

/* Hero Section */
.hero {
  background-color: var(--dark-color);
  color: white;
  padding: 8rem 0;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
}

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

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

/* Page Header */
.page-header {
  background-color: var(--dark-color);
  color: white;
  padding: 5rem 0;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/page-header.jpg');
  background-size: cover;
  background-position: center;
}

.page-header h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Posts */
.featured-posts {
  background-color: white;
}

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

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

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

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

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

.post-image {
  height: 220px;
  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: 1.5rem;
}

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

.post-content h3 a {
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
}

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

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

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

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

/* Daily Inspiration */
.daily-inspiration {
  background-color: var(--light-color);
  padding: 4rem 0;
}

.daily-inspiration h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.inspiration-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.quote {
  flex: 1 1 400px;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote blockquote {
  font-size: 1.2rem;
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.quote blockquote::before {
  content: """;
  font-size: 4rem;
  position: absolute;
  left: -10px;
  top: -20px;
  color: var(--primary-color);
  opacity: 0.3;
}

.quote .author {
  text-align: right;
  font-style: italic;
  color: var(--gray-color);
}

.subscribe {
  flex: 1 1 400px;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.subscribe h3 {
  margin-bottom: 1rem;
}

#subscribe-form {
  display: flex;
  gap: 0.5rem;
}

#subscribe-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

/* Recent News */
.recent-news {
  background-color: white;
}

.recent-news h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.recent-news h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.news-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

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

.news-item h3 {
  padding: 1rem 1rem 0.5rem;
}

.news-item h3 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.news-item h3 a:hover {
  color: var(--primary-color);
}

.news-item p {
  padding: 0 1rem 1rem;
  color: var(--gray-color);
}

.news-item .read-more {
  display: block;
  text-align: right;
  padding: 0 1rem 1rem;
  font-weight: 600;
}

/* Blog Posts */
.blog-posts {
  background-color: white;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--light-color);
  border-radius: 8px;
}

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

.search input {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
  width: 250px;
}

.search button {
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.categories {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.categories span {
  font-weight: 600;
}

.categories a {
  color: var(--gray-color);
  transition: var(--transition);
}

.categories a:hover, .categories a.active {
  color: var(--primary-color);
}

.posts-grid.large .post-card {
  display: flex;
  flex-direction: column;
}

.posts-grid.large .post-image {
  height: 220px;
}

.category {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--dark-color);
  transition: var(--transition);
}

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

.pagination .next {
  background-color: var(--light-color);
}

.pagination .next:hover {
  background-color: var(--primary-color);
}

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

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.about-image {
  flex: 1 1 400px;
}

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

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  margin-bottom: 1.5rem;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Mission Vision */
.mission-vision {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.mission-vision .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.mission, .vision {
  flex: 1 1 45%;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.mission .icon, .vision .icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* Team */
.team {
  background-color: white;
  text-align: center;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--gray-color);
}

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

.team-member {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

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

.team-member h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
}

.team-member p {
  color: var(--gray-color);
  padding: 0 1rem;
}

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

.team-member .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.team-member .social-icons a {
  color: var(--gray-color);
  transition: var(--transition);
}

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

/* Values */
.values {
  background-color: var(--light-color);
  text-align: center;
}

.values h2 {
  margin-bottom: 3rem;
  position: relative;
}

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

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

.value-item {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.value-item .icon {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

/* Contact Info */
.contact-info {
  background-color: white;
}

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

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

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-card .icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

.contact-card .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-card .social-icons a {
  color: var(--dark-color);
  transition: var(--transition);
}

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

/* Contact Form */
.contact-form-section {
  background-color: var(--light-color);
}

.contact-form-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.form-container, .map-container {
  flex: 1 1 45%;
}

.form-container h2, .map-container h2 {
  margin-bottom: 1.5rem;
}

.form-container p {
  margin-bottom: 2rem;
  color: var(--gray-color);
}

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

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

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

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

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

.form-group textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-container input {
  width: auto;
}

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

/* Blog Post */
.blog-post {
  background-color: white;
  padding-bottom: 5rem;
}

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

.post-header .post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.post-header h1 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post .post-image {
  height: auto;
  max-height: 500px;
  margin-bottom: 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.post-content blockquote {
  padding: 1.5rem;
  background-color: var(--light-color);
  border-left: 4px solid var(--primary-color);
  margin: 2rem 0;
  font-style: italic;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 800px;
  margin: 3rem auto;
  align-items: center;
}

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: var(--light-color);
  border-radius: 4px;
  color: var(--dark-color);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.share-post {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.share-post span {
  font-weight: 600;
}

.share-post a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--dark-color);
  transition: var(--transition);
}

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

.author-box {
  display: flex;
  gap: 2rem;
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.author-avatar {
  flex-shrink: 0;
}

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

.author-info h3 {
  margin-bottom: 0.2rem;
}

.author-info p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.author-social a {
  color: var(--gray-color);
  transition: var(--transition);
}

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

.related-posts {
  max-width: 800px;
  margin: 0 auto;
}

.related-posts h3 {
  margin-bottom: 2rem;
  position: relative;
}

.related-posts h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.post-card.small {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.post-card.small .post-image {
  flex: 0 0 100px;
  height: 100px;
}

.post-card.small .post-content {
  flex: 1;
  padding: 1rem;
}

.post-card.small h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.post-card.small .post-meta {
  font-size: 0.8rem;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo, .footer-links, .footer-contact, .footer-social {
  flex: 1 1 220px;
}

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

.footer-links h3, .footer-contact h3, .footer-social h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

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

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

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

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

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

.footer-social .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%;
  color: white;
  transition: var(--transition);
}

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

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cookie-link {
  margin-left: 1rem;
  font-size: 0.9rem;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-color);
  transition: var(--transition);
}

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

.popup-icon {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.popup h3 {
  margin-bottom: 1rem;
}

.popup p {
  margin-bottom: 2rem;
}

/* Icons */
.icon-location, .icon-phone, .icon-mail, .icon-id, .icon-search {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-location {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23d32f2f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
}

.icon-phone {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23d32f2f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>');
}

.icon-mail {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23d32f2f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>');
}

.icon-id {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23d32f2f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="16" rx="2"></rect><line x1="8" y1="2" x2="8" y2="6"></line><line x1="16" y1="2" x2="16" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
}

.icon-search {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>');
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .hero {
    padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .post-header .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .post-content {
    font-size: 1rem;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  
  .author-avatar {
    margin-bottom: 1.5rem;
  }
  
  .author-avatar img {
    margin: 0 auto;
  }
  
  .author-social {
    justify-content: center;
  }
  
  .filter-bar {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .search {
    width: 100%;
  }
  
  .search input {
    width: 100%;
  }
  
  .categories {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-form-section .container {
    flex-direction: column;
  }
  
  .map {
    height: 350px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 1rem;
  }
  
  .footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-social .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 0.8rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .post-card.small {
    flex-direction: column;
  }
  
  .post-card.small .post-image {
    width: 100%;
    height: 180px;
  }
  
  #subscribe-form {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-link {
    margin-left: 0;
    margin-top: 1rem;
  }
}
