/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #bc9b5d;
  border-radius: 10px;
  border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: #9a7c41;
}

/* Base Styles */
:root {
  --primary-color: #bc9b5d;
  --primary-dark: #9a7c41;
  --secondary-color: #2c3e50;
  --text-color: #333;
  --light-text: #777;
  --white: #fff;
  --light-bg: #f8f9fa;
  --dark-bg: #1a1a1a;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 5px;
  --container-width: 1200px;
}

* {
  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(--white);
}

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.cta-button,
button[type="submit"],
.submit-button,
.popup-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.cta-button:hover,
button[type="submit"]:hover,
.submit-button:hover,
.popup-button:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

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

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

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

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: var(--secondary-color);
  font-weight: 600;
  padding: 10px 5px;
  position: relative;
}

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

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

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

/* Featured Posts Section */
.featured-posts {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

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

.post-card {
  background: var(--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.15);
}

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

.post-info {
  padding: 20px;
}

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

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

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

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

.read-more:hover:after {
  margin-left: 8px;
}

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

.view-all a {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

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

/* Beginner Mistakes Section */
.beginner-mistakes {
  padding: 80px 0;
  background-color: var(--white);
}

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

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

.mistake-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

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

.mistake-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

.mistake-card p {
  color: var(--light-text);
}

/* Newsletter Section */
.newsletter {
  background-color: var(--secondary-color);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 30px;
}

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

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

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

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-logo p {
  color: #bbb;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

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

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

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

.footer-links a {
  color: #bbb;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #bbb;
}

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

.social-icons {
  display: flex;
  margin-top: 20px;
}

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

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

.copyright {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-width);
  display: flex;
  flex-direction: column;
}

.cookie-content p {
  margin-bottom: 15px;
}

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

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

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

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

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

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

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

.btn-decline:hover {
  text-decoration: underline;
}

.cookie-buttons a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 15px;
  align-self: center;
}

/* Blog Page Styles */
.blog-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/5.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.blog-hero h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.blog-content {
  padding: 60px 0;
  display: flex;
}

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

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-post {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .blog-post {
    flex-direction: row;
  }
}

.post-image {
  flex: 1;
  min-height: 250px;
}

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

.post-content {
  flex: 2;
  padding: 25px;
}

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

.post-meta .date:before {
  content: '📅';
  margin-right: 5px;
}

.post-meta .category:before {
  content: '🏷️';
  margin-right: 5px;
}

.post-meta .author:before {
  content: '👤';
  margin-right: 5px;
}

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

.post-content p {
  margin-bottom: 15px;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
  margin-bottom: 20px;
  position: relative;
}

.sidebar-widget h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -8px;
  left: 0;
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.category-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.category-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--light-bg);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.beginner-mistakes-sidebar ul {
  list-style: none;
}

.beginner-mistakes-sidebar li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.beginner-mistakes-sidebar li:before {
  content: '⚠️';
  position: absolute;
  left: 0;
}

.widget-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.sidebar-form {
  display: flex;
  flex-direction: column;
}

.sidebar-form input {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 10px;
}

.sidebar-form button {
  align-self: flex-start;
}

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

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

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

.post-header .post-image {
  margin-top: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 400px;
}

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

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

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

.post-content img {
  margin: 30px auto;
  border-radius: var(--border-radius);
}

.post-rating {
  margin-top: 40px;
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
}

.rating-category {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.rating-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.stars {
  color: var(--warning-color);
}

.post-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tag-label {
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--light-bg);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.share-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.share-label {
  font-weight: 600;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-bg);
  transition: var(--transition);
  color: var(--secondary-color);
}

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

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

.nav-previous a,
.nav-next a {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-previous a:hover,
.nav-next a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.related-posts {
  margin-top: 60px;
}

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

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

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

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

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

.related-post h3 {
  padding: 15px 20px 0;
  font-size: 1.2rem;
}

.related-post p {
  padding: 0 20px;
  color: var(--light-text);
}

.related-post a {
  display: inline-block;
  margin: 0 20px 20px;
  font-weight: 600;
}

/* About Page */
.about-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/8.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  color: var(--white);
}

.about-mission {
  padding: 80px 0;
}

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

.mission-content h2 {
  margin-bottom: 30px;
}

.mission-content p {
  margin-bottom: 20px;
}

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

.about-values {
  background-color: var(--light-bg);
  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: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

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

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

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

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

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

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

.team-member p {
  padding: 0 20px;
  color: var(--light-text);
}

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

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-bg);
  transition: var(--transition);
  color: var(--secondary-color);
}

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

.review-process {
  background-color: var(--light-bg);
  padding: 80px 0;
}

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

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

.process-step {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  padding-top: 50px;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonials {
  padding: 80px 0;
}

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

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

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

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

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

.author-name {
  text-align: right;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Contact Page */
.contact-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/10.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  color: var(--white);
}

.contact-content {
  padding: 80px 0;
}

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

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

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

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

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

.social-media {
  margin-top: 40px;
}

.social-media h3 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

.submit-button {
  width: 100%;
}

.map-section {
  padding: 40px 0 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(--light-bg);
  padding: 80px 0;
}

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

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

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

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

/* Thank You Popup */
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.thank-you-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.thank-you-popup.show .popup-content {
  transform: translateY(0);
}

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

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

.popup-icon {
  color: var(--success-color);
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.popup-button {
  margin-top: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .blog-content .container {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-mission .container {
    grid-template-columns: 1fr;
  }
  
  .mission-image {
    order: -1;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 15px;
  }
  
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    text-align: center;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: var(--box-shadow);
    z-index: 999;
    padding: 20px 0;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .post-card {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .blog-post {
    flex-direction: column;
  }
  
  .post-image {
    height: 200px;
  }
  
  .post-header .post-image {
    height: 250px;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 15px;
  }
  
  .footer-links h3:after,
  .footer-contact h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 15px;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .popup-content {
    padding: 30px 20px;
  }
}
