.attraction-banner {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.attraction-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


.tips-section {
    padding: 40px;
    max-width: 800px;
    width: 100%;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Adds a shadow for a clean look */
    border-radius: 10px; /* Rounds the corners */
    margin: 40px auto; /* Centers the section */
    text-align: center;
}

.tips-section h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.centered-links {
    margin-bottom: 20px; /* Adds space below each link */
}

.centered-links a {
    font-size: 18px;
    text-decoration: none;
    color: black;
    padding: 12px 18px; /* Adds padding for better clickability */
    display: inline-block;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.centered-links a:hover {
    color: #4682B4; /* Slightly darker blue */
    text-decoration: underline;
}
