 @font-face {
            font-family: 'TiroBangla';
            src: url('TiroBangla-Regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        body {
            background: linear-gradient(to bottom right, #e0e7ff, #f3e8ff);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .header-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-bottom: 4px solid #7c3aed;
            border-radius: 0.5rem;
        }

        @media (min-width: 640px) {
            .header-img {
                height: 200px;
            }
        }

        footer {
            background-color: #f3e8ff;
            padding: 1rem;
            text-align: center;
            color: #4b5563;
            border-radius: 0.5rem;
            margin-top: 1.5rem;
        }

        .autocomplete-suggestions {
            position: absolute;
            width: 100%;
            max-height: 200px;
            overflow-y: auto;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            z-index: 10;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .suggestion-item {
            padding: 0.75rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .suggestion-item:hover {
            background-color: #f3e8ff;
        }

        .TiroBangla-heading {
            font-family: 'TiroBangla', sans-serif;
            align-items: center;
        }
        