body {
    background-color: #f9f9f9;
}

.page-wrapper {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'HelveticaNeueBold', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    color: #333;
    margin: 0;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #1952c8;
}

.info-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.media-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #000;
}

.media-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.info-card h2 {
    font-family: 'HelveticaNeueBold', sans-serif;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
}

.info-card h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
    margin-top: 20px;
}

.info-card h3:first-of-type {
    margin-top: 0;
}

.info-card p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.meta-tags {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #eee;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #555;
}

.tag.ww {
    background: #e3f2fd;
    color: #1565c0;
}

ul.styled-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

ul.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

ul.styled-list li::before {
    content: "•";
    color: #1952c8;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

li.spacer, li.separator {
    height: 1px;
    background: #eee;
    margin: 15px 0;
    list-style: none;
    padding: 0;
}

ul.styled-list li.spacer::before,
ul.styled-list li.separator::before {
    content: none;
    display: none;
}

.category-columns {
    display: flex;
    gap: 40px;
}

.cat-col {
    flex: 1;
}

.timeline-block {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.timeline-block:last-child {
    border-bottom: none;
}

.timeline ul {
    list-style: none;
    padding: 0;
}

.timeline ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 4px;
}

.timeline ul li span:first-child {
    font-weight: bold;
    color: #1952c8;
    min-width: 120px;
}

.alert-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.alert-box h3 {
    color: #856404;
    margin-top: 0;
}

.emergency-contact {
    text-align: center;
    background: #222;
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.emergency-contact p {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.phone-link {
    color: #4da3ff;
    text-decoration: none;
    font-weight: bold;
}

.disclaimer {
    font-size: 0.9rem;
    color: #888 !important;
    text-align: center;
    margin-top: 30px !important;
    font-style: italic;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .media-grid,
    .info-grid-row,
    .category-columns {
        grid-template-columns: 1fr;
        flex-direction: column;
        display: flex;
    }

    .timeline ul li {
        flex-direction: column;
    }

    .content-container {
        padding: 0 15px;
    }
}