.transport-container {
    width: 700px;
    height: 380px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 9px 6px #6957c3;
    margin-bottom: 15px;
    overflow-y: auto;
    text-align: center;
}

.form-container {
    padding: 0 30px;
    text-align: center;
}

.form-container h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333333;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555555;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-container input:focus {
    outline: none;
    border-color: #1e1250;
    box-shadow: 0 0 5px #1e1250;
}

.form-container button {
    background-color: #1e1250;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #1e1250;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 14px auto;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card h3 {
    margin: 15px 0 10px;
    color: #333333;
    font-size: 1.2rem;
}

.card p {
    margin: 0 15px 15px;
    color: #666666;
    font-size: 0.95rem;
}

.modal-content {
    position: relative;
    width: 450px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 34px;
    padding: 10px;

}

.transport-modal {
    position: absolute;
    width: 700px;
    height: 350px;
    z-index: 2;
    color: black;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}