    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    i {
        color: orangered;
    }
    
    i:hover {
        color: #fff!important;
    }
    
    h2 {
        color: orangered;
        font-size: 2.4rem;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .btn-primary {
        background-color: transparent;
        border: orangered 1px solid;
        color: orangered;
        height: 50px;
    }
    
    .btn-warning {
        background-color: orangered;
        border-color: orangered;
        color: #fff;
        font-weight: 400;
    }
    
    .btn-outline-light {
        border-color: orangered;
        font-weight: 400;
    }
    
    .btn-warning:hover {
        background-color: #fff;
        border: #fff;
        color: orangered;
    }
    
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero1.jpg') center/cover no-repeat;
        color: white;
        padding: 360px 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
        font-weight: 700;
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-top: 10px;
    }
    
    input {
        height: 50px;
    }
    
    .search-box {
        margin-top: -50px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        padding: 30px;
    }
    
    .feature-card,
    .about-card {
        transition: transform 0.3s;
    }
    
    .feature-card:hover,
    .about-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    /* ads */
    
    .ads {
        text-align: center;
    }
    /* ads ends */
    
    footer {
        background: #212529;
        color: #bbb;
        padding: 40px 0;
        margin-top: 50px;
    }
    
    footer a {
        color: #bbb;
        text-decoration: none;
    }
    
    footer a:hover {
        color: #fff;
    }
    
    @media (max-width: 768px) {
        .hero {
            padding: 150px 20px;
        }
        .hero h1 {
            font-size: 2rem;
        }
        .hero p {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 768px) {
        .card {
            padding: 15px;
        }
    }