

:root {
  --royal-blue: #003399;     /* Primary (Background) */
  --metallic-gold: #D4AF37;  /* Accent / Highlight */
  --white: #FFFFFF;          /* Neutral (Text / Background) */
  --charcoal-black: #1A1A1A; /* Dark Accent (Optional) */
  --light-gray: #f5f7fa;     /* Light blue-gray for readability */
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.5s ease-in-out;
}

/* -------------------- FOOTER BANNER (image_473ac2.png bottom) -------------------- */
.info-banner {
    /* Dark background color from your color scheme */
    background-color: var(--charcoal-black);
    padding: 30px 5%;
    margin-bottom: 25px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.info-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    /* Divider lines */
}

/* Remove border from the last item */
.info-item:last-child {
    border-right: none;
}

.info-number {
    font-size: 2.5rem;
    font-weight: 700;
    /* Number color is Metallic Gold */
    color: var(--metallic-gold);
    margin-right: 20px;
    padding: 0 5px;
    line-height: 1;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.info-content p {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        padding: 15px 0;
    }

    .info-item:last-child {
        border-bottom: none;
    }
}