*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f7f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #005eb8;
    /* Sky Blue/Dark Blue */
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.step-header {
    margin-bottom: 20px;
}

.blue-box {
    background-color: #007bff;
    /* Bright Blue */
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input[type="text"],
input[type="date"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

input[type="text"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.radio-group {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.radio-option {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    border-color: #007bff;
    background-color: #f0f7ff;
}

.btn-next {
    background-color: #ef5366;
    /* Red/Pink */
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 30px auto 0;
    transition: background-color 0.2s;
}

.btn-next:hover {
    background-color: #d14050;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-back {
    background-color: white;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

/* Specific elements from screenshot */
.airplane-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Progress Bar */
.progress-container {
    position: relative;
    margin-bottom: 40px;
    padding: 0 20px;
}

.progress-bar {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    width: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background-color: #007bff;
    border-radius: 3px;
    width: 25%;
    /* Dynamic width */
    transition: width 0.3s ease;
}

.progress-airplane {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #007bff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Date Selectors */
.date-selector-container {
    display: flex;
    gap: 15px;
}

.date-select {
    flex: 1;
    padding: 12px;
    border: 1px solid white;
    border-radius: 6px;
    background: white;
    color: #333;
    font-size: 16px;
    cursor: pointer;
}

/* Flight List */
.flight-list-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s;
}

.flight-list-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.flight-list-item input[type="radio"] {
    transform: scale(1.5);
    margin-right: 15px;
}

.flight-route {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.flight-dots {
    color: #007bff;
    letter-spacing: 5px;
    font-size: 1.5rem;
}

/* Result Styles */
.result-header {
    text-align: center;
    color: #005eb8;
    margin-bottom: 30px;
}

.no-claim-box {
    background-color: #ffe6e6;
    /* Light Pink */
    color: #d14050;
    /* Dark Red */
    padding: 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.result-info {
    text-align: center;
    margin-top: 20px;
    background: #e6f3ff;
    padding: 15px;
    border-radius: 8px;
    color: #007bff;
}