.title {
    padding-top: 120px;
    background-image: url("/media/Patagonia.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    padding-bottom: 200px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.8);
}

.trip-card {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 250px;
    border-radius: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--secondary-color);
}

.trip-card h2 {
    margin-top: 10px;
}

.trip-card p {
    margin: 2px;
}

.card-left {
    width: 40%;
}

.card-left img {
    height: 247px;
    width: 100%;
    
    border-right-style: solid;
    border-right-width: 3px;
    border-right-color: var(--secondary-color);
    border-radius: 18px 0 0 18px;
}

.card-right {
    width: 60%;
    padding-top: 20px;
    padding-left: 15px;
    margin-right: 20px;
    overflow: hidden;
}

@media (max-width: 1170px) {
    .trip-card h2 {
        margin-top: 0px;
        margin-bottom: 5px;
    }

    .trip-card {
        height: 220px;
    }

    .card-right {
        padding-top: 5px;
    }

    .card-left img {
        height: 217px;
    }
}

@media (max-width: 950px) {
    .trip-card h2 {
        font-size: 1.6rem;
    }

    .trip-card {
        font-size: 0.9rem;
        height: 180px;
    }

    .card-left img {
        height: 177px;
    }
}

@media (max-width: 680px) {
    .trip-card {
        height: 120px;
    }

    .trip-card img {
        height: 117px;
    }

    .card-right p {
        display: none;
    }
}

@media (max-width: 480px) {
    .trip-card h2 {
        font-size: 1.4rem;
    }

    .trip-card {
        height: 100px;
    }

    .trip-card img {
        height: 97px;
    }
}

.contact-form {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 1.5rem 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.08);
    max-width: 900px;
    width: 90vw;
    margin: auto;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
}

textarea {
    min-height: 180px;
}

.radio-group, .checkbox {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin-top: 0.5rem;
}

.radio-group label, .checkbox label {
    font-weight: normal;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

button {
    cursor: pointer;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    padding: 0.65rem 2.2rem;
}

.reset-button {
    background:#e9ecef;
    color: #555;
    transition: background-color 100ms ease-in-out;
}

.reset-button:hover {
    background:#b3b5b8;
}

.send-button {
    background: var(--primary-color);
    color: #ffffff;
    transition: background-color 100ms ease-in-out;
}

.send-button:hover {
    background: #de8c19;
}