 body {
            font-family: 'Roboto', Arial, sans-serif;
            background: linear-gradient(135deg, #eaf2ff 0%, #f7f9fb 100%);
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        header {
            text-align: center;
            padding: 2rem 1rem 1rem 1rem;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            border-bottom: 2px solid #eaf2ff;
        }
        header h1 {
            margin: 0;
            font-size: 2.2rem;
            font-weight: 600;
            color: #222;
            letter-spacing: 0.03em;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            padding: 2rem;
            flex: 1;
        }
        .card {
            background: #fff;
            border-radius: 1rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.07);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 1rem;
            transition: box-shadow 0.2s, transform 0.2s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: "";
            position: absolute;
            top: -40px;
            right: -40px;
            width: 80px;
            height: 80px;
            background: rgba(79,140,255,0.08);
            border-radius: 50%;
            z-index: 0;
        }
        .card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transform: translateY(-4px) scale(1.02);
        }
        .icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #4f8cff;
            background: #eaf2ff;
            border-radius: 50%;
            width: 4rem;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(79,140,255,0.08);
            transition: background 0.2s;
            z-index: 1;
        }
        .card:hover .icon {
            background: #d0e3ff;
        }
        .branch-name {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #222;
            letter-spacing: 0.01em;
            z-index: 1;
        }
        .shortform {
            font-size: 1rem;
            color: #4f8cff;
            font-weight: 500;
            margin-bottom: 1rem;
            background: #eaf2ff;
            border-radius: 0.4rem;
            padding: 0.2rem 0.7rem;
            display: inline-block;
            z-index: 1;
        }
        .card a {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: linear-gradient(90deg, #4f8cff 60%, #2563eb 100%);
            color: #fff;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.2s, box-shadow 0.2s;
            margin-top: 0.5rem;
            box-shadow: 0 2px 8px rgba(79,140,255,0.08);
            z-index: 1;
        }
        .card a:hover {
            background: linear-gradient(90deg, #2563eb 60%, #4f8cff 100%);
            box-shadow: 0 4px 16px rgba(79,140,255,0.15);
        }
        footer {
            text-align: center;
            padding: 1rem;
            background: #f0f4fa;
            font-size: 1rem;
            color: #555;
            letter-spacing: 0.02em;
            border-top: 2px solid #eaf2ff;
        }
        /* Add subtle animation for cards */
        .card {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.7s forwards;
        }
        .card:nth-child(1) { animation-delay: 0.1s; }
        .card:nth-child(2) { animation-delay: 0.2s; }
        .card:nth-child(3) { animation-delay: 0.3s; }
        .card:nth-child(4) { animation-delay: 0.4s; }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @media (max-width: 600px) {
            .grid {
                padding: 1rem;
                gap: 1rem;
            }
            .card {
                padding: 1.2rem 0.5rem;
            }
            header h1 {
                font-size: 1.3rem;
            }
        }







/* Style for a searchable dropdown container */
.search-container {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 50px; /* Pill shape */
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* You would then have a dropdown list that is shown/hidden with JS */
.results-list {
    position: absolute;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    display: none; /* Controlled by JS */
}