.page-title {
    text-align: center;
    padding: 40px 20px;
    background: #f0f8ff;
}

.tours-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px;
    background: #ffffff;
}

.tour-card {
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 15px;
    width: 280px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: scale(1.03);
}

.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-card h3 {
    color: #007bff;
    margin: 15px 0 10px;
}

.tour-card p {
    padding: 0 15px;
}

.price {
    font-weight: bold;
    color: #28a745;
}

.cta-button {
    display: inline-block;
    margin: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
}

.cta-button:hover {
    background-color: #0056b3;
}

.tour-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 15px;
}