* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #f8f9fa;
}

.logistics-wrapper {
    max-width: 900px;
    margin: 160px auto;
    padding: 20px;
}

.logistics-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.logistics-form {
    background: #fff;
    border: 2px solid #00a2ff;
    border-radius: 8px;
    padding: 20px;
}

.logistics-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.logistics-left,
.logistics-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logistics-left h3,
.logistics-right h3 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.pickup-title {
    margin-top: 10px;
}

input[type="text"],
input[type="date"],
textarea {
    padding: 10px 15px;
    border-radius: 25px;
    border: 1.5px solid #00a2ff;
    font-size: 14px;
    width: 100%;
    transition: 0.3s;
}

textarea {
    border-radius: 10px;
    resize: vertical;
    min-height: 90px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #007acc;
}

.vehicle-row {
    display: flex;
    gap: 10px;
}

.vehicle-row input {
    flex: 1;
}

.confirm-btn-wrap {
    text-align: right;
    margin-top: 10px;
}

.confirm-btn {
    padding: 10px 20px;
    border: none;
    background-color: #00a2ff;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.confirm-btn:hover {
    background-color: #007acc;
}

@media (max-width: 768px) {
    .logistics-box {
        flex-direction: column;
    }
}