.info-section {
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: left;
}

.info-header {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: white;
    font-weight: bold;
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 0;
}

.features-sub {
    font-size: 1.5rem;
    color: white;
    text-align: left;
    margin: 0 auto;
    padding: 1rem;
}

.info-section li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

.info-section li strong {
    font-weight: 600;
}

.info-text {
  color: #0af;
  cursor: pointer;
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: #111;
  color: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  animation: fadeInUp 0.4s ease;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

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

.info-wrapper{
    width: 90%;
    margin: 0 auto;
    margin-top: 3rem;
    border-top: 1px solid white;
}

.info-sections {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    color: white;
    margin: 0 auto;
}

.info-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.info-grid-wrapper {
    text-align: left;
}

.info-title {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 0.75rem;
}

.info-title h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-align: left;
}

.info-list{
    list-style: inside;  
    padding-left: 0;
    margin-left: 0;
}

.info-list li{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

@media (max-width: 768px) {
  .info-sections {
    grid-template-columns: 1fr;
  }
  .info-list{
    list-style: outside;  
    margin-left: 1rem;
  }
  .modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 2rem 0;
  }

  .modal-content {
    margin: 0 auto;
    max-height: none;
  }
}