/* Base Styles */
:root {
  --primary-color: #ff4081;
  --secondary-color: #3d5afe;
  --dark-color: #212121;
  --light-color: #f5f5f5;
  --accent-color: #ff9800;
  --success-color: #4caf50;
  --error-color: #f44336;
  --gray-color: #757575;
  --light-gray: #e0e0e0;
  --white: #ffffff;
  --black: #000000;
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-gray);
}

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

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 6px;
  border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary-color);
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

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

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

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
  border-radius: 50%;
}

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 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;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

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

nav ul li a i {
  margin-right: 0.3rem;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/images/4.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
  position: relative;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

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

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

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

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 1.5rem;
}

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

.post-content p {
  color: var(--gray-color);
  margin-bottom: 1.5rem;
}

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

.read-more::after {
  content: "→";
  margin-left: 0.3rem;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 0.6rem;
}

/* This Day in History Section */
.this-day-in-history {
  padding: 4rem 0;
  background-color: var(--white);
}

.this-day-in-history h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.this-day-in-history h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.history-content {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.history-image {
  flex: 0 0 40%;
  overflow: hidden;
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.history-content:hover .history-image img {
  transform: scale(1.1);
}

.history-text {
  flex: 0 0 60%;
  padding: 2rem;
}

.history-text h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Newsletter Section */
.newsletter {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

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

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

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 1.5rem;
  background-color: var(--secondary-color);
}

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

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

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

.footer-about img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-about h3 {
  color: var(--white);
}

.footer-links h3,
.footer-contact h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.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);
  color: var(--white);
  margin-right: 0.8rem;
  transition: var(--transition);
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  padding: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

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

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cookie-content a {
  display: inline-block;
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background-color: var(--light-color);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--gray-color);
  max-width: 800px;
  margin: 0 auto;
}

/* Blog Page Styles */
.blog {
  padding: 4rem 0;
}

.blog-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.blog-filter button {
  background-color: transparent;
  color: var(--dark-color);
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.blog-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

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

.blog-post .post-image {
  flex: 0 0 350px;
  height: auto;
}

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.blog-post .post-content {
  flex: 1;
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.post-meta span {
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
}

.post-meta span i {
  margin-right: 0.4rem;
  color: var(--primary-color);
}

.blog-post .post-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--dark-color);
  font-weight: 500;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.pagination a.next {
  width: auto;
  padding: 0 1.5rem;
  border-radius: var(--border-radius);
}

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

/* Blog Post Page Styles */
.blog-post-header {
  background-color: var(--light-color);
  padding: 3rem 0;
  text-align: center;
}

.blog-post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-header .post-meta {
  justify-content: center;
  margin-bottom: 0;
}

.blog-post-content {
  padding: 4rem 0;
}

.post-image-full {
  margin-bottom: 2.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.post-image-side {
  float: right;
  max-width: 350px;
  margin: 0 0 1.5rem 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.image-caption {
  font-size: 0.9rem;
  color: var(--gray-color);
  text-align: center;
  padding: 0.8rem;
  background-color: var(--light-color);
}

.post-text h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.2rem;
}

.post-text h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

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

.post-text ul li,
.post-text ol li {
  margin-bottom: 0.5rem;
}

.post-text ul {
  list-style-type: disc;
}

.post-text ol {
  list-style-type: decimal;
}

blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--gray-color);
  background-color: rgba(255, 64, 129, 0.05);
}

blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-style: normal;
}

.post-tags {
  margin: 3rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.post-tags span {
  margin-right: 1rem;
  font-weight: 500;
}

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

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

.post-share {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--light-gray);
  padding-top: 1.5rem;
}

.post-share span {
  margin-right: 1rem;
  font-weight: 500;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--gray-color);
  margin-right: 0.8rem;
  transition: var(--transition);
}

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

.author-box {
  display: flex;
  align-items: center;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 4rem;
  box-shadow: var(--box-shadow);
}

.author-image {
  flex: 0 0 100px;
  margin-right: 1.5rem;
}

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

.author-info {
  flex: 1;
}

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

.author-info p {
  margin-bottom: 1rem;
}

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

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

.related-posts {
  margin-bottom: 4rem;
}

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

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

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.related-post h4 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
}

.related-post a {
  display: inline-block;
  padding: 0 1rem 1rem;
  color: var(--primary-color);
}

.comments-section {
  max-width: 800px;
  margin: 0 auto;
}

.comments-section h3 {
  margin-bottom: 2rem;
  position: relative;
}

.comments-section h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.comment {
  display: flex;
  margin-bottom: 2rem;
}

.comment-avatar {
  flex: 0 0 60px;
  margin-right: 1.5rem;
}

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

.comment-content {
  flex: 1;
}

.comment-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comment-info h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.comment-info span {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.reply-btn {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.reply-btn:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: none;
}

.comment-form {
  margin-top: 3rem;
}

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

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

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

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

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
}

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

/* About Page Styles */
.about-us {
  padding: 4rem 0;
}

.about-intro {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image {
  flex: 0 0 45%;
  margin-right: 4rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-content {
  flex: 1;
}

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

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

.mission-vision {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.mission,
.vision,
.values {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.mission:hover,
.vision:hover,
.values:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.mission i,
.vision i,
.values i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.mission h3,
.vision h3,
.values h3 {
  margin-bottom: 1rem;
}

.team-section {
  margin-bottom: 4rem;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

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

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

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

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
}

.member-role {
  display: block;
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  justify-content: center;
  padding-bottom: 1.5rem;
}

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

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

.testimonials {
  margin-bottom: 4rem;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

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

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 calc(33.333% - 1.333rem);
  scroll-snap-align: start;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.testimonial-content {
  position: relative;
  padding-top: 1.5rem;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 64, 129, 0.2);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

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

.testimonial-author h4 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

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

.cta-section .btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

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

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
}

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

.contact-info {
  flex: 0 0 35%;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.contact-info > p {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

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

.contact-form {
  flex: 1;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form h2 {
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-form h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.map-section {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

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

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

.faq-section {
  padding: 4rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

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

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

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

.thank-you-content i {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.thank-you-content h2 {
  margin-bottom: 1rem;
}

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

.modal-btn {
  min-width: 150px;
}

/* Privacy Policy and Terms of Service Pages */
.privacy-policy,
.terms-of-service {
  padding: 4rem 0;
}

.policy-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.policy-intro p:first-child {
  font-weight: 500;
  color: var(--gray-color);
  margin-bottom: 2rem;
}

.policy-section {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--light-gray);
}

.policy-section h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.policy-section ul,
.policy-section ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.policy-section ul li,
.policy-section ol li {
  margin-bottom: 0.5rem;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .about-intro {
    flex-direction: column;
  }

  .about-image {
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .mission-vision {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    flex: 0 0 100%;
  }

  .testimonial {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 2rem;
  }

  nav ul li {
    margin: 1rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .blog-post {
    flex-direction: column;
  }

  .blog-post .post-image {
    flex: 0 0 200px;
  }

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

  .testimonial {
    flex: 0 0 100%;
  }

  .post-image-side {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-image {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .author-social {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .post-card {
    margin-bottom: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }

  .newsletter-form .btn {
    border-radius: var(--border-radius);
    width: 100%;
  }

  .blog-post-header h1 {
    font-size: 1.8rem;
  }

  .blog-post-header .post-meta {
    flex-direction: column;
    align-items: center;
  }

  .blog-post-header .post-meta span {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .comment {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .comment-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .comment-info {
    flex-direction: column;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}
