 /* body {
            background: linear-gradient(120deg,rgb(223, 234, 238) 0%,rgb(176, 238, 235) 100%);
            min-height: 100vh;
        } */
        header {
            background: rgba(44, 62, 80, 0.95);
            border-radius: 0 0 25px 25px;
            box-shadow: 0 8px 24px rgba(44,62,80,0.15);
        }

        .brand-logo {
            height: 60px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin-right: 15px;
        }
        .header-title {
            font-family: 'Prompt', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .header-desc {
            font-size: 1rem;
            margin-bottom: 10px;
            color: #ffe082;
        }
        .header-btn {
            margin-right: 8px;
            margin-bottom: 5px;
            font-weight: 500;
            border-radius: 20px;
            transition: background 0.2s;
        }
        .header-btn:hover {
            background: #f6d365;
            color: #2c3e50 !important;
        }
        .search-form {
            display: inline-block;
            margin-left: 20px;
        }
        .search-form input {
            border-radius: 20px 0 0 20px;
            border: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .search-form button1 {
            border-radius: 0 20px 20px 0;
            border: none;
            background: #fda085;
            color: #fff;
            transition: background 0.2s;
        }
        .search-form button1:hover {
            background: #f6d365;
            color: #2c3e50;
        }
        @media (max-width: 768px) {
            .header-title { font-size: 1.3rem; }
            .brand-logo { height: 40px; }
            .search-form { margin-left: 0; margin-top: 10px; }
        }
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}