body { 
    background: #f8f8f8; 
    font-family: 'PT Sans', sans-serif; 
}

.header-section { 
    background: #fff; 
    border-bottom: 1px solid #e0e0e0; 
    padding: 20px 0; 
    margin-bottom: 30px; 
}

.logo { 
    height: 60px; 
    margin-bottom: 15px; 
}

.form-container { 
    background: #fff; 
    padding: 40px; 
    border-radius: 4px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
    margin-bottom: 30px; 
}

.form-title { 
    color: #00457d; 
    font-size: 28px; 
    font-weight: bold; 
    margin-bottom: 10px; 
}

.form-subtitle { 
    color: #666; 
    font-size: 16px; 
    margin-bottom: 30px; 
}

.form-group label { 
    color: #00457d; 
    font-weight: bold; 
    font-size: 14px; 
}

.form-control { 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    padding: 10px 15px; 
    font-size: 14px; 
}

.form-control:focus { 
    border-color: #00457d; 
    box-shadow: 0 0 0 0.2rem rgba(0, 69, 125, 0.25); 
}

.btn-submit { 
    background: #00457d; 
    color: #fff; 
    border: none; 
    padding: 12px 40px; 
    font-size: 16px; 
    font-weight: bold; 
    border-radius: 4px; 
    cursor: pointer; 
    margin-top: 20px; 
}

.btn-submit:hover { 
    background: #003050; 
    color: #fff; 
}

.info-box { 
    background: #f0f7ff; 
    border-left: 4px solid #00457d; 
    padding: 15px 20px; 
    margin-bottom: 20px; 
    border-radius: 4px; 
}

.info-box strong { 
    color: #00457d; 
}

.step-indicator { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 40px; 
}

.step { 
    flex: 1; 
    text-align: center; 
}

.step-number { 
    width: 40px; 
    height: 40px; 
    background: #00457d; 
    color: #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    margin: 0 auto 10px; 
}

.step.active .step-number { 
    background: #004400; 
}

.step-label { 
    color: #00457d; 
    font-size: 12px; 
    font-weight: bold; 
}

.field-group { 
    margin-bottom: 25px; 
}

.success-message { 
    display: none; 
    background: #d4edda; 
    border: 1px solid #c3e6cb; 
    color: #155724; 
    padding: 15px; 
    border-radius: 4px; 
    margin-bottom: 20px; 
}

.date-selector { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
    gap: 10px; 
    margin-bottom: 25px; 
}

.date-btn { 
    padding: 15px; 
    border: 2px solid #ddd; 
    background: #fff; 
    border-radius: 4px; 
    cursor: pointer; 
    text-align: center; 
    transition: all 0.3s; 
    font-size: 12px; 
    font-weight: bold; 
    color: #333; 
}

.date-btn:hover { 
    border-color: #00457d; 
    background: #f0f7ff; 
}

.date-btn.active { 
    background: #00457d; 
    color: #fff; 
    border-color: #00457d; 
}

.date-btn .day { 
    display: block; 
    font-size: 16px; 
    font-weight: bold; 
    margin-bottom: 5px; 
}

.date-btn .date-info { 
    display: block; 
    font-size: 11px; 
    color: inherit; 
}

.card-info { 
    background: #f0f7ff; 
    border: 1px solid #d4e4f7; 
    padding: 15px; 
    border-radius: 4px; 
    margin-bottom: 25px; 
}

.card-info strong { 
    color: #00457d; 
    display: block; 
    margin-bottom: 5px; 
}

.card-info p { 
    color: #666; 
    margin: 0; 
    font-size: 14px; 
}
