.vp-container {
        padding: 60px 20px;
        background-color: #ffffff;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #333;
        text-align: center;
    }

    .vp-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .vp-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
        font-weight: 700;
        color: #1a1a1a;
    }

    /* The Grid System */
    .vp-grid {
        display: grid;
        /* This line handles the responsiveness automatically */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px 20px;
    }

    .vp-card {
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .vp-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px; /* For emojis */
    }

    .vp-card-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .vp-card-text {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
        margin: 0;
        max-width: 280px;
    }

    /* Mobile tweak for smaller screens */
    @media (max-width: 600px) {
        .vp-title { font-size: 1.8rem; }
        .vp-grid { gap: 30px 10px; }
    }




 



    .vp-brands-section {
        padding: 60px 20px;
        background-color: #ffffff;
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow: hidden;
    }

    .vp-brands-title {
        color: #4472c4; /* VistanaPro Blue */
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .vp-brands-subtitle {
        color: #595959;
        font-size: 1.1rem;
        margin-bottom: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    /* Logo Slider Container */
    .vp-logo-slider {
        display: flex;
        align-items: center;
        gap: 60px;
        width: max-content;
        /* Animation for continuous loop */
        animation: scroll 30s linear infinite;
    }

    .vp-slider-wrapper {
        display: flex;
        width: 100%;
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .vp-logo-item {
        height: 40px; /* Adjust height as needed */
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .vp-logo-item:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* Dots indicator (Static/Visual Only) */
    .vp-dots {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .vp-dot {
        width: 12px;
        height: 6px;
        border-radius: 3px;
        background-color: #d1d1d1;
    }

    .vp-dot.active {
        width: 24px;
        background-color: #4472c4;
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @media (max-width: 768px) {
        .vp-brands-title { font-size: 1.8rem; }
        .vp-logo-item { height: 30px; }
    }








.promo-table {
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.promo-table th {
  background-color: #f0f0f0;
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.promo-table td {
  padding: 10px;
  border: 1px solid #ddd;
}

.promo-table tr:nth-child(even) {
  background-color: #fafafa;
}

.promo-table tr:hover {
  background-color: #f5f5f5;
}

.available {
  color: green;
  font-weight: bold;
}

.not-available {
  color: red;
  font-weight: bold;
}
















.promo-banner {
  display: flex;
  align-items: center;
  background: #efefef;
  border: 1px solid #ddd;
  max-width: 900px;
  font-family: Arial, sans-serif;
}

.promo-left {
  width: 200px;
  height: 100px;
  background: #e0e0e0;
  text-align: center;
  padding: 15px 10px;
  position: relative;
}

.promo-value {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.promo-off {
  font-size: 16px;
  color: #333;
  margin-top: 5px;
}

.promo-verified {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #888;
  color: #fff;
  font-size: 12px;
  padding: 5px 0;
}

.promo-right {
  padding: 20px;
  flex: 1;
}

.promo-code {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333;
}

.promo-desc {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}



@media (max-width: 600px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
  }

  .promo-left {
    width: 100%;
  }

  .promo-right {
    padding: 15px;
  }
}