.info-block {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}
.info-block-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.info-block-icon {
    font-size: 1.25rem;
}
.info-block-content {
    color: #495057;
}
.emergency-contacts {
    background: #fef2f2;
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #dc2626;
}
.emergency-contacts h4 {
    margin: 0 0 0.75rem;
    color: #dc2626;
}
.emergency-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.emergency-contacts li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.emergency-contacts li:last-child {
    border-bottom: none;
}
.emergency-contacts .phone {
    font-weight: bold;
    color: #dc2626;
}
.bus-schedule {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #ff6b35;
}
.bus-schedule h4 {
    margin: 0 0 0.75rem;
    color: #ff6b35;
}
.bus-schedule table {
    width: 100%;
    border-collapse: collapse;
}
.bus-schedule th,
.bus-schedule td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.bus-schedule th {
    background: #e5e7eb;
}
.bus-schedule td:last-child {
    font-weight: bold;
    text-align: right;
}