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

:root {
  --primary-purple: #6b1f8f;
  --dark-purple: #5a1a75;
  --light-purple: #8b3fa8;
  --teal: #4a9b9e;
  --light-teal: #5fb3b6;
  --orange: #ff9500;
  --light-orange: #ffb84d;
  --dark-bg: #1a1a1a;
  --light-bg: #f9f9f9;
  --text-dark: #333;
  --text-light: #666;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-logo:hover {
  color: var(--light-purple);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding-bottom: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-purple);
  border-bottom: 2px solid var(--primary-purple);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001; /* ensure hamburger is above sidebar */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-purple);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;

  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("IMG-20260414-WA0519.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}
```


@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
  font-size: 4rem;
  font-style: italic;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.8s ease-out;
}

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

.hero-image {
  position: absolute;
  width: 300px;
  height: 300px;
  right: 10%;
  opacity: 0.8;
  object-fit: cover;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-purple);
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-align: justify;
}

/* What We Do Section */
.what-we-do {
  display: flex;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.what-we-do-image {
  flex: 1;
  min-height: 400px;
  border-radius: 15px;
  object-fit: cover;
  animation: slideInLeft 0.8s ease-out;
}

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

.what-we-do-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.1)"/><rect x="100" y="100" width="60" height="60" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.what-we-do-content {
  flex: 1;
  animation: slideInRight 0.8s ease-out;
}

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

.what-we-do-content h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.what-we-do-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.what-we-do-content ul {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

.what-we-do-content li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.what-we-do-content blockquote {
  background: var(--light-bg);
  border-left: 4px solid var(--primary-purple);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 5px;
  font-style: italic;
  color: var(--text-dark);
}

/* Founder Section */
.founder-section {
  display: flex;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
  border-radius: 15px;
  color: var(--white);
}

.founder-image {
  flex: 0 0 350px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  animation: pulse 2s ease-in-out infinite;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.founder-content {
  flex: 1;
}

.founder-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.founder-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--orange);
}

.founder-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.founder-content a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.founder-content a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.founder-content a:hover::after {
  width: 100%;
}

/* Consult Section */
.consult-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  background: var(--light-bg);
  border-radius: 15px;
}

.consult-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-purple);
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(107, 31, 143, 0.1);
  transform: translateY(-2px);
}

.submit-btn {
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(107, 31, 143, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-purple);
}

.testimonials-slider {
  position: relative;
  min-height: 250px;
  margin-bottom: 2rem;
}

.testimonial-card {
  opacity: 0;
  position: absolute;
  width: 100%;
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-purple);
  animation: fadeOut 0.5s ease-out;
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  position: relative;
  animation: fadeIn 0.5s ease-out;
}

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

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

/* Added styles for testimonial profile images and layout */
.testimonial-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #eee;
}

.testimonial-image {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.testimonial-meta h4 {
  margin-bottom: 0.25rem;
}

.testimonial-meta .testimonial-author {
  margin-bottom: 0;
  color: var(--primary-purple);
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-purple);
  font-style: normal !important;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: #bbb;
  transform: scale(1.2);
}

.dot.active {
  background: var(--primary-purple);
  transform: scale(1.3);
}

.view-more-btn {
  display: inline-block;
  margin: 1rem auto;
  padding: 1rem 2rem;
  background: var(--primary-purple);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-more-btn:hover {
  background: var(--light-purple);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(107, 31, 143, 0.3);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cta-contact a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.cta-contact a:hover {
  color: var(--light-orange);
}

/* Footer */
.footer {
  background: var(--primary-purple);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

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

.footer-column h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  line-height: 1.8;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.footer-column a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-column a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Testimonial Page */
.testimonial-hero {
  background: linear-gradient(135deg, #d4662f 0%, #b3522a 100%);
}

.testimonials-content {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-purple);
  text-align: center;
}

.testimonials-content > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.testimonial-item {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 10px;
  border-left: 4px solid var(--primary-purple);
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(107, 31, 143, 0.15);
}

.testimonial-item h4 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.testimonial-item blockquote p {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial-item .author {
  color: var(--primary-purple);
  font-weight: 600;
  font-style: normal;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, #2c2c2c 0%, #444 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-purple);
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 1rem;
}

.contact-info a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--primary-purple);
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-purple);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.about-content {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-purple);
}

.about-content p {
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-what-we-do {
  flex-direction: column;
}

.about-what-we-do .what-we-do-image {
  display: none;
}

.about-what-we-do .full-width {
  width: 100%;
}

.about-founder {
  margin: 3rem 0;
}

/* FAQ Page */
.faq-hero {
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
}

.faq-content {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-content h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-purple);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  background: var(--light-bg);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(107, 31, 143, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  border: none;
  background: var(--light-bg);
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Playfair Display", serif;
}

.faq-question:hover {
  background: #f0f0f0;
  color: var(--primary-purple);
  padding-left: 2rem;
}

.faq-question::after {
  content: "▼";
  transition: transform 0.3s ease;
  color: var(--primary-purple);
}

.faq-question.active::after {
  transform: rotate(180deg);
}

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

.faq-answer.active {
  padding: 1.5rem;
  max-height: 1000px;
  background: var(--white);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-answer ul {
  margin-left: 1.5rem;
  color: var(--text-light);
}

.faq-answer li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Blog Page */
.blog-hero {
  background-image: url('Quels sont les objets interdits en cabine _ _ Skyscanner France.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  color:  #6b1f8f;
}

.blog-content {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary-purple);
}

.blog-content > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

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

.blog-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-purple);
}

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

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--light-teal) 100%);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: -2rem -2rem 1.5rem -2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.blog-card h3 {
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.blog-date {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-block;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.read-more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-purple);
  transition: width 0.3s ease;
}

/* Media Queries */
@media screen and (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .what-we-do,
  .founder-section {
    flex-direction: column;
    gap: 2rem;
  }

  .what-we-do-image,
  .founder-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .hamburger {
    display: flex;
  }

  /* side-bar style menu */
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--white);
    width: 280px;
    height: 100vh;
    padding: 80px 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
    text-align: left;
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  /* hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    height: 400px;
  }

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

  .hero-image {
    display: none; /* hide floating image on mobile to save space */
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column a::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

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

  .about-section,
  .what-we-do,
  .consult-section,
  .testimonials-section {
    padding: 3rem 1rem;
  }

  .founder-section {
    padding: 2rem 1rem;
  }

  .founder-image {
    width: 250px;
    height: 250px;
  }
}
/* Blog Modal */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 1rem;
}

.blog-modal-content {
  background: #fff;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  border-radius: 10px;
  animation: fadeIn 0.4s ease;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
}

.close-modal:hover {
  color: #000;
}

#modalTitle {
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.modal-date {
  color: #777;
  margin-bottom: 2rem;
}

#modalBody p {
  line-height: 1.9;
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

