.banner {
    background: linear-gradient(90deg, #591a0b, #4d3f35, #010306);
    color: white;
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px; /* Subtle rounded corners */
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text {
    max-width: 70%;
}

.banner-text h2 {
    margin: 0;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000; /* Coral text for contrast */
    margin-left: 1rem;
    background-color: #fff176; /* Yellow background for the price tag */
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.banner-text p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.banner-action {
    display: flex;
    align-items: center;
    height: 100%; /* Make sure the button is vertically centered */
}

.banner .button {
    padding: 0.75rem 1.5rem;
    background-color: #fff176; /* Matching yellow button */
    color: #27140f; /* Coral text */
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.banner .button:hover {
    background-color: #ffd54f; /* Slightly darker yellow on hover */
}
