.corner-logos {
  position: absolute;
  top:1px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between; /* pushes one left, one right */
  align-items: center;
  padding: 0 2px;
  z-index: 10;
}
.header-content{
    margin-top: 25px;
}
.logo {



  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

}

.logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.left-logo {
  position: absolute;
  top: 20px;
  left: 30px;
}

.right-logo {
  position: absolute;
  top: 20px;
  right: 30px;
}
/* Simple Payment Styles */
.app-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

.payment-options {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr !important;
    }

    .app-btn {
        padding: 12px !important;
        font-size: 1rem !important;
    }
}