/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9fb;
  color: #222;
  line-height: 1.6;
}

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

/* Header de base */
.header {
  background: #1e1e2f;
  padding: 1rem 0;
  border-bottom: 1px solid #444;
  position: relative;
  z-index: 1000;
}

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

.logo-link .logo {
  height: 42px;
  filter: brightness(0) invert(1);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: inherit; /* Pas de police différente */
}

.main-nav a,
.dropbtn {
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.dropbtn:hover {
  color: #fff;
}

.btn.small {
  background: #134AAA;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  color: #f9f9fb;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn.small:hover {
  background: #155cd9;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.arrow {
  font-size: 0.7rem;
}

/* Contenu du dropdown */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #2a2a47;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(21, 92, 217, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1001;
  flex-direction: column;
  display: flex;
}

.dropdown-content a {
  padding: 0.7rem 1rem;
  color: #ddd;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #134AAA;
  color: #fff;
}

/* Afficher dropdown au hover (desktop) */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Menu toggle burger (mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.menu-toggle .burger {
  width: 25px;
  height: 3px;
  background: #ddd;
  border-radius: 2px;
  transition: background 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 65px;
    right: 0;
    background: #1e1e2f;
    flex-direction: column;
    width: 220px;
    height: calc(100vh - 65px);
    padding-top: 1rem;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.5);
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav a,
  .dropbtn {
    padding: 1rem 1.5rem;
    width: 100%;
    border-bottom: 1px solid #333;
  }

  .dropdown-content {
    position: static;
    background: none;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown-content.active {
    max-height: 500px; /* assez grand pour le contenu */
  }

  /* Fix bug header telephone */
  .dropdown-content a {
    padding: 1rem 1.3rem; /* Uniformisez le padding */
    border-bottom: 1px solid #444;
    text-align: left; /* Assurez un alignement à gauche */
    width: 100%; /* Assurez que l'élément prend toute la largeur */
  }

  /* Enlever hover dropdown desktop sur mobile */
  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}


/* Bouton */
.btn {
  background: #134AAA;
  color: #f9f9fb;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #155cd9;
}

.btn.big {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  display: inline-block;
}

/* Hero */
.hero {
  background: #f9f9fb;
  text-align: center;
  padding: 120px 20px 80px;
  border-radius: 8px;
  margin: 40px 0;
  margin-top: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 1rem;
}

.hero-text {
  flex: 1;
  text-align: left;
}

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

.hero-text p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(106, 90, 205, 0.15);
}
/* Bandeau promo */
.promo-banner {
  width: 100%;
  background: #134AAA;
  color: white;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 2px 10px rgba(21, 92, 217, 0.7);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 1100;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;  /* centre tout le contenu */
}

.promo-banner p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#close-promo {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  margin-left: 12px; /* espace entre texte et bouton */
  padding: 0;
  user-select: none;
  transition: color 0.3s ease;
}

#close-promo:hover {
  color: #d3cfff;
}

/* Explication Offre */
.expli {
  background: #f9f9fb;
  text-align: center;
  padding: 120px 20px 80px;
  border-radius: 8px;
  margin-top: 0;
}

/* Offres */
.offers h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #222;
}

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

.offers .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(106, 90, 205, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offers .card:hover {
  box-shadow: 0 12px 30px rgba(106, 90, 205, 0.3);
}

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

.offers .card h3 {
  color: #6a5acd;
  margin: 1rem 1rem 0.5rem;
}

.offers .card p {
  margin: 0 1rem 1rem;
  color: #555;
  flex-grow: 1;
}

.offers .btn.small {
  margin: 0 1rem 1rem;
  background: #6a5acd;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  border-radius: 6px;
  align-self: flex-start;
}

.offers .btn.small:hover {
  background: #7b6eea;
}

/* Section VPS avec image à gauche */
.hero-alt {
  background: #f9f9fb;
  padding: 120px 20px 80px;
  border-radius: 8px;
  margin: 40px 0;
}

.hero-alt-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 1rem;
}

.hero-alt-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(106, 90, 205, 0.15);
}

.hero-alt-text h2 {
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  color: #134AAA;
}

.hero-alt-text p {
  color: #555;
}
.hero-alt-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
}

.hero-alt-item i {
  font-size: 2rem;
  color: #134AAA;
  min-width: 40px;
  margin-top: 6px; /* aligne mieux avec le texte */
}

.hero-alt-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
}

/* Page d'offre */
.hero-offre-image{
  flex: 1;
  text-align: center;
}

.hero-offre-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Section offre vps */
.vps-offers h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: 2.5rem;
}

.vps-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.vps-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(106, 90, 205, 0.1);
  padding: 2rem 2.5rem;
  width: 280px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vps-card:hover {
  box-shadow: 0 12px 30px rgba(106, 90, 205, 0.3);
  transform: translateY(-8px);
}

.vps-card.popular {
  border: 2px solid #134AAA;
}

.badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #134AAA;
  color: white;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(106, 90, 205, 0.3);
}

.vps-card h3 {
  margin-bottom: 1rem;
  color: #134AAA;
  font-size: 1.7rem;
  font-weight: 700;
}

.vps-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.8rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.vps-card ul li {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #134AAA;
}

.btn.large {
  background: #134AAA;
  padding: 0.7rem 1.8rem;
  font-size: 1.1rem;
  border-radius: 8px;
  display: inline-block;
  color: #fff;
  transition: background 0.3s ease;
}

.btn.large:hover {
  background: #155cd9;
}
/* OS */
.os-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
}

.os-grid {
  display: flex;
  justify-content: space-around; /* ou space-evenly */
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.os-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(106, 90, 205, 0.1);
  padding: 20px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.os-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(106, 90, 205, 0.3);
}

.os-card img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

/* FAQ */
.faq-section {
  margin: 60px auto;
  max-width: 900px;
  padding: 0 1rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
  font-weight: 600;
  font-size: 2rem;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(106, 90, 205, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #134AAA;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #155cd9;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  background: #f9f9fb;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 1rem 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Ajuste selon la taille de la réponse */
  padding: 1rem 1.5rem;
}

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


/* Responsive */
@media (max-width: 900px) {
  .hero-alt-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-alt-text {
    text-align: center;
  }

  .hero-alt-image {
    margin-bottom: 2rem;
  }
}

/* Mise en avant offre */
.highlighted-offers {
  background: #f9f9fb;
  padding: 100px 20px 80px;
  border-radius: 8px;
}

.highlighted-offers h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 10px;
}

.highlight-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.highlighted-offers .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.highlighted-offers .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(106, 90, 205, 0.1);
  text-align: center;
  padding: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.highlighted-offers .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(106, 90, 205, 0.25);
}

.highlighted-offers .card img {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.highlighted-offers .card h3 {
  color: #134AAA;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.highlighted-offers .card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.highlighted-offers .btn.small {
  background: #134AAA;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.highlighted-offers .btn.small:hover {
  background: #155cd9;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(28, 84, 188, 0.4);
}

/* Section contacte page d'acceuil */
.contact-section {
  background: #f9f9fb;
  padding: 80px 20px;
  margin-top: 40px;
}

.contact-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(106, 90, 205, 0.1);
  padding: 40px 30px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.contact-box h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #134AAA;
}

.contact-box p {
  color: #555;
  margin-bottom: 2rem;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  max-width: 280px;
}

.contact-method i {
  font-size: 2rem;
  color: #134AAA;
}

.contact-method h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
}

.contact-method a {
  color: #134AAA;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-method a:hover {
  color: #134AAA;
}

/* Responsive */
@media (max-width: 700px) {
  .contact-options {
    flex-direction: column;
  }
}

/* Avis Clients */
.testimonials {
  background: #f9f9fb;
  padding: 100px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #222;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(106, 90, 205, 0.1);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 30px rgba(106, 90, 205, 0.25);
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1.2rem;
}

.testimonial-card h4 {
  margin: 0;
  font-weight: 600;
  color: #134AAA;
}

.testimonial-card span {
  color: #777;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #1e1e2f;
  color: #bbb;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

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

.footer-column h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

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

.footer-column ul a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul a:hover {
  color: #155cd9;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #999;
}

/* Styles pour les boutons des réseaux sociaux */
.social-links {
  display: inline-flex;
  gap: 1rem;
  margin-right: 1rem;
  vertical-align: middle;
}

.social-btn {
  color: #999;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-btn:hover {
  color: #155cd9;
}

.social-btn i {
  font-family: "Font Awesome 5 Brands", sans-serif; /* Assurez-vous d'inclure Font Awesome */
}

/* Configurator */
.configurator {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(106, 90, 205, 0.1);
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.configurator h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #134AAA;
}

.option-group {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.option-group h3 {
  margin-bottom: 0;
  color: #555;
  white-space: nowrap;
}

.option-group label {
  display: block;
  margin: 5px 0;
}

.option-group input[type="radio"] {
  margin-right: 10px;
}

.option-group.bandwidth {
  flex-direction: column; /* Disposition verticale pour la bande passante */
  align-items: flex-start;
}

.option-group input[type="range"] {
  width: 200px; /* Largeur par défaut */
  margin: 10px 0;
  appearance: none;
  height: 12px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
}

/* Style de la poignée du slider */
.option-group input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 25px; /* Poignée plus grande */
  height: 25px;
  background: #134AAA;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.option-group input[type="range"]::-webkit-slider-thumb:hover {
  background: #155cd9;
}

.option-group input[type="range"]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #134AAA;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.option-group input[type="range"]::-moz-range-thumb:hover {
  background: #155cd9;
}

/* Style de la piste pour Firefox */
.option-group input[type="range"]::-moz-range-track {
  background: #ddd;
  border-radius: 5px;
}

.option-group span {
  display: inline-block;
  margin-left: 10px;
  color: #134AAA;
}

/* Configurator - Horizontal Billing Options */
.option-group.billing {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.option-group.billing h3 {
  margin-bottom: 10px;
  color: #555;
  width: 100%;
}

.option-group.billing label {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #e6f0fa;
  color: #134AAA;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
}

.option-group.billing input[type="radio"] {
  display: none;
}

.option-group.billing input[type="radio"]:checked + label {
  background: #134AAA;
  color: #f9f9fb;
}

.option-group.billing label span {
  margin-left: 5px;
  color: #134AAA;
}

.option-group.billing input[type="radio"]:checked + label span {
  color: #f9f9fb;
}

/* Ajustement pour les autres options (radio) */
.option-group.protocol,
.option-group.ipv6,
.option-group.bgp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-group.protocol label,
.option-group.ipv6 label,
.option-group.bgp label {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: #f9f9fb;
  color: #222;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.option-group.protocol input[type="radio"]:checked + label,
.option-group.ipv6 input[type="radio"]:checked + label,
.option-group.bgp input[type="radio"]:checked + label {
  background: #134AAA;
  color: #f9f9fb;
  border-color: #134AAA;
}

.option-group.protocol input[type="radio"],
.option-group.ipv6 input[type="radio"],
.option-group.bgp input[type="radio"] {
  display: none;
}

/* Ajustement responsif */
@media (max-width: 900px) {
  .option-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .option-group.billing {
    flex-direction: column;
    align-items: center;
  }

  .option-group.billing label {
    width: 80%;
    margin-bottom: 10px;
  }

  .option-group.protocol,
  .option-group.ipv6,
  .option-group.bgp {
    flex-direction: column;
    align-items: flex-start;
  }

  .option-group.bandwidth {
    width: 100%; /* Prend toute la largeur */
  }

  .option-group input[type="range"] {
    width: 100%;
    min-width: 200px; /* Largeur minimale garantie */
    max-width: 300px; /* Limite maximale */
  }
}

.price-commande {
  text-align: center;
  margin-top: 20px;
}

.price-commande h3 {
  margin-bottom: 10px;
  color: #555;
}

.price-commande #price {
  font-size: 2rem;
  color: #134AAA;
  font-weight: 600;
}

.price-commande span {
  color: #555;
  margin-left: 10px;
}

.price-commande .btn {
  background: #134AAA;
  border: none;
  outline: none; 
  color: #f9f9fb;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.price-commande .btn:hover {
  background: #155cd9;
}


.price-display {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.price-display h3 {
  margin-bottom: 10px;
  color: #555;
}

.price-display #price {
  font-size: 2rem;
  color: #134AAA;
  font-weight: 600;
}

.price-display span {
  color: #555;
  margin-left: 10px;
}

.price-display .btn {
  background: #134AAA;
  border: none;
  outline: none; 
  color: #f9f9fb;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.price-display .btn:hover {
  background: #155cd9;
}



/* Responsive */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2rem;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-image {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-alt-image img {
    width: 100%;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .vps-grid {
    flex-direction: column;
    align-items: center;
  }
  .vps-card {
    width: 90%;
  }
}