.banner {
    background-image: url("/images/banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
    overflow: hidden;
}

.banner .date {
    height: 29px;
    width: 214px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    letter-spacing: 0;
    line-height: 24px;
    margin-bottom: 10px;
}

.banner h1 {
    font-size: 2.5rem;
    /* Large heading */
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    /* Text shadow for better readability */
}

.banner span {
    color: rgb(75, 202, 75);
}

.banner .text {
    max-width: 664px;
    color: #FFFFFF;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 24px;
    margin-top: 1rem;
    margin-bottom: 1rem;

}


.banner button {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    height: 51px;
    width: 170px;
    border-radius: 27px;
    background-color: #E77627;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.banner button:hover {
    background-color: #e65b50;
    transform: scale(1.05);
}

.banner button:active {
    background-color: #cc4d45;
    transform: scale(0.98);
}


@media (max-width: 768px) {
    .banner {
        height: 50vh;
        padding: 1rem;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .banner button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}