body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 1%;
    background-color: #fff;
    color: #333;
}

.head {
    color: rgb(255, 77, 0);
}

.banner {
    background: #c2552d;
    text-align: center;
    padding: 60px 0;
    border-radius: 30px;
    margin: 30px auto;
    width: 80%;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 20px;
    left: 30px;
}

.banner::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: 20px;
    right: 30px;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    color: white;
    font-size: 24px;
}

.explore-btn {
    background: white;
    color: #c2552d;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.footer {
    background: #2b1d16;
    color: white;
    padding: 30px 20px;
    margin-top: 50px;
    border-radius: 25px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}

.head2 {
    color: rgba(255, 255, 255, 0.804);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.804);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 20px;
}

.footer-socials a {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .banner {
        width: 90%;
        padding: 40px 10px;
    }
    .banner-content h1 {
        font-size: 20px;
    }
    .explore-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    .footer {
        text-align: center;
        padding: 20px;
        display: ;
    }
    /* .footer-links {
        text-align: center;
        gap: -1rem;
        display: flex;
    } */

    .head3 {
    color: #e6491e;
    }
}

@media (max-width: 480px) {
 

    .banner-content h1 {
        font-size: 18px;
    }
    .explore-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    .footer-links {
        text-align: center;
        gap: -1rem;
        display: flex;
    }
    .footer-socials {
        flex-direction: row;
    }
}
