:root {
  --primary: #004aad;
  --accent: #ffbd59;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
  --font: "Space Grotesk", sans-serif;
  --transition: 0.3s ease;
}

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

html {
  font-size: 100%;
}

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

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

body {
  font-family: "Space Grotesk", sans-serif;
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

ul {
  list-style: none;
}

/* Containers & Sections */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 6rem 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* Header */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo + Nom de l'entreprise */
.logo-container {
  display: flex;
  align-items: center; /* Aligne le logo et le texte verticalement */
}

.logo {
  height: 55px; /* Ajuste la taille du logo selon tes besoins */
  width: auto;
  margin-right: 10px; /* Espace entre le logo et le texte */
}

/* Nom de l'entreprise modernisé */
.company-name {
  font-size: 1rem; /* Taille plus grande */
  font-weight: 700; /* Poids plus fort */
  text-transform: uppercase;
  color: transparent;
  background-image: linear-gradient(
    to right,
    #ffbd59,
    #004aad
  ); /* Dégradé de jaune à bleu */
  -webkit-background-clip: text; /* Utilisation du dégradé pour le texte */
  background-clip: text; /* Support pour Firefox */
  letter-spacing: 2px; /* Espacement des lettres pour un look plus moderne */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Ombre subtile pour donner de la profondeur */
  transition: all 0.3s ease;
}

/* Effet au survol pour moderniser encore plus */
.company-name:hover {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2); /* Ombre plus marquée au survol */
  transform: translateY(-2px); /* Léger effet de levée au survol */
}

/* Accent sur "STUDIO" */
.accent {
  color: inherit; /* Prend la couleur héritée du dégradé */
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-weight: 500;
}

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

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--white);
}

/* Container dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Lien principal */
.dropdown-toggle {
  color: var(--text-color, #333);
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  font-weight: 500;
}
 
/* Menu déroulant caché */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 999;
}

/* Liens internes */
.dropdown-menu a {
  padding: 8px 14px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

/* Affichage au hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Mobile (affichage au clic) */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 8rem 0 6rem;
  background: radial-gradient(circle at top left, #dbeafe 0%, transparent 60%);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #003882;
}

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

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

/* Intro */
/* Style général de la section */
.intro-section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Fond clair */
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text {
  flex: 1;
  max-width: 600px;
}

.intro-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.intro-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
}

/* Style des statistiques */
.intro-stats {
  flex: 1;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat {
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.stat p {
  font-size: 1rem;
  color: #777;
  font-weight: 400;
}

/* Effet de survol des statistiques */
.stat:hover {
  transform: translateY(-10px);
}

.stat:hover h3 {
  color: #ffbd59; /* Changer la couleur au survol */
}

/* Animation d’apparition des statistiques */
.stat-value {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.stat:nth-child(1) .stat-value {
  animation-delay: 0.2s;
}

.stat:nth-child(2) .stat-value {
  animation-delay: 0.4s;
}

.stat:nth-child(3) .stat-value {
  animation-delay: 0.6s;
}

.stat:nth-child(4) .stat-value {
  animation-delay: 0.8s;
}

/* Animation d’apparition */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Projects */
.projects-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.section-title {
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-info {
  padding: 20px 25px;
  text-align: left;
}

.project-info h3 {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 12px;
}

.project-info p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ✅ Mobile optimization */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .project-card {
    margin: 0 auto;
    width: 100%;
    max-width: 95%;
  }

  .project-info {
    text-align: center;
  }

  .project-info h3 {
    font-size: 1.2rem;
  }

  .project-info p {
    font-size: 0.95rem;
  }
}

/* About */
.about-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.team-member {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #004aad20;
}

.member-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #004aad;
}

.member-info span {
  font-size: 0.95rem;
  color: #666;
  display: block;
  margin-top: 4px;
}

/* Valeurs */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

/* Témoignages */
.testimonials-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #222;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.6;
}

.author {
  display: block;
  font-weight: 600;
  color: #555;
}

.quote-icon {
  font-size: 3rem;
  color: #e0e0e0;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 0;
  pointer-events: none;
}

/* Animation d’apparition en fade + slide */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Classe d’animation */
.testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

/* Effet décalé entre les cartes */
.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.3s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.5s;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

/* Contact */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.contact-text {
  flex: 1 1 40%;
}

.contact-form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  font-family: var(--font);
  font-size: 1rem;
}

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

/* Footer */
.footer {
  background: #f1f5f9;
  padding: 4rem 0 2rem;
  color: var(--text);
}

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

.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ toggle icon if needed */
.faq-item h3.open::after {
  content: "–";
  float: right;
}

.faq-item h3::after {
  content: "+";
  float: right;
  transition: transform 0.3s ease;
}

/* Mobile styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: inherit;
}

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

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white; /* ou autre couleur */
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }
}

.blog {
  padding: 35px 15px;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #004aad;
}

.posts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.post {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

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

.post h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #004aad; /* Bleu */
  margin-bottom: 10px;
}

.post-content {
  padding: 10px;
}

.post-title {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-hero-unique {
  background: linear-gradient(135deg, #f5faff 0%, #ebf1ff 100%);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.blog-listing {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.hero-content {
  flex: 1 1 500px;
  z-index: 2;
}

.hero-illustration {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.hero-illustration img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

.hero-label {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  background: rgba(255, 189, 89, 0.15);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
}

/* Optional animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column-reverse;
    text-align: center;
  }
  .posts-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post {
    width: 100%;
  }

  .hero-content {
    align-items: center;
  }
}

.article-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(to right, #f3f7fd, #e0edff);
  text-align: center;
}

.hero-label {
  background: var(--accent);
  color: var(--text);
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.article-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.article-date {
  color: var(--muted);
  font-size: 0.95rem;
}

.article-content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.article-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 0 auto 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  object-fit: cover;
  background-color: #f0f4f8;
  aspect-ratio: 16 / 9;
  filter: brightness(1.03) contrast(1.05);
  border: 1px solid #e2e8f0;
}

.article-cover {
  margin: 0 auto 3rem;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

/* Bonus : fallback visuel si image trop petite */
.article-image.small-image {
  object-fit: contain;
  background-color: #f0f4f8;
  padding: 2rem;
}

.article-cover img {
  width: 100%;
  max-width: 960px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.article-body {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.8;
}

.post-excerpt {
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: #004aad;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Image dans chaque article */
.post-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover; /* Assure que l'image s'ajuste bien */
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

.social-icon.facebook {
  background-color: #1877f2;
}

.social-icon.whatsapp {
  background-color: #25d366;
}

.social-icon.email {
  background-color: #ffbd59;
  color: #000;
}

.blog-actions {
  text-align: center;
  margin-top: 18px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

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

.btn.btn-outline {
  border: 1px solid #004aad;
  color: #004aad;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn.btn-outline_first {
  border: 1px solid #004aad;
  color: #004aad;
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn.btn-outline:hover {
  background: #004aad;
  color: white;
}
.btn.btn-outline_first:hover {
  background: #004aad;
  color: white;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

  nav.nav-links {
    display: none; /* remplacé par menu mobile */
  }

  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .post {
    margin-bottom: 2rem;
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4caf50; /* Couleur verte pour le succès */
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000; /* S'assurer que le toast est au-dessus des autres éléments */
}

/* Applique l'animation pour faire apparaître et disparaître le toast */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.hidden {
  display: none;
}

.pagination {
  text-align: center;
  margin: 25px 0;
}

.page-link {
  display: inline-block;
  margin: 0 4px;
  padding: 6px 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: white;
  font-size: 0.9rem;
  color: #004aad;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-link:hover {
  background: #004aad;
  color: white;
}

.page-link.active {
  background: #004aad;
  color: white;
  font-weight: bold;
  border-color: #004aad;
}
