.tour-description-section {
    text-align: center;
    margin-bottom: 6rem;
}

.tour-description-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 50px;
}

.tour-description-title {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.2;
    font-size: 42px;
    color: black;
    font-weight: normal;
}

.tour-description-subtitle{
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: black;
}

.tour-description-text {
    max-width: 810px;
    margin: 2rem auto;
    font-size: 22px;
    color: #363636;
    line-height: 1.4;
    text-align: center;
}

.tour-description-image-container {
    width: 100%;
    height: 400px; /* Fixed height for consistent image sizing */
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.tour-description-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintains aspect ratio while filling container */
    object-position: center; /* Centers the image */
}

.tour-description-button {
    display: inline-block;
    background-color: black;
    color: white !important;
    padding: 20px 40px;
    text-decoration: none;
    margin-top: 1rem;
    font-size: 17px;
    transition: background-color 0.3s ease;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
}

.tour-description-button a:visited{
    color: white;
}

.tour-description-button:hover {
    background-color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tour-description-title {
        font-size: 32px;
    }
    
    .tour-description-text {
        font-size: 18px;
    }
    
    .tour-description-image-container {
        height: 250px; /* Shorter on mobile */
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}