﻿.travel-form-section {
    padding: 80px 0;
    position: relative;
}

.form-background {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.travel-form-section .section-header h2 {
    font-size: 34px;
    font-weight: bold;
}

.form-label {
    font-weight: 600;
}

.place-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.tour-img-wrapper {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    width: 100%;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.place-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


