 /* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
} 
/* General reset for margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and HTML styling */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Centering the container on the page */
.container {
    display: flex;
    justify-content: center; /* Horizontally centers the content */
    align-items: center; /* Vertically centers the content */
    /* height: 100vh; /* Full height of the viewport */
    gap: 20px; /* Space between columns */
    padding-top: 20px;
}

/* Individual pricing boxes */
.align {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header for each pricing tier */
.pricing-header, .featured-pricing-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Price styling */
.price {
    font-size: 2rem;
    color: #227aab;
    margin-bottom: 10px;
}

/* Description style for benefits */
.description {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
}

/* Category and Sub-Category styling */
.category {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Button styling */
.btn {
    display: inline-block;
    background-color: #227aab;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

.btn:hover {
    background-color: black;
}

/* Adjustments for smaller screens (responsive) */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stacks the pricing columns vertically */
        gap: 20px;
    }

    .align {
        width: 100%; /* Makes each column take full width */
        max-width: 400px; /* Ensures the max width is still constrained */
    }
}

    .menu {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #2c3e50;
      padding: 18px 0 12px 0;
      box-shadow: 0 2px 8px rgba(49,46,129,0.07);
    }
    .menu a {
      color: #fff;
      text-decoration: none;
      padding: 12px 28px;
      font-weight: 600;
      font-size: 1.08rem;
      letter-spacing: 1px;
      border-radius: 6px;
      margin: 0 6px;
      transition: background 0.2s, color 0.2s;
      position: relative;
    }
    .menu a:hover {
      background: #000;
      color: #fff;
    }


