/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.header {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #cc4129;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1 {
    color: #cc4129;
    margin: 0;
    font-size: 2.5em;
}

h2 {
    color: #333;
    margin: 10px 0;
    font-size: 1.8em;
}

h3 {
    color: #666;
    margin: 5px 0;
    font-size: 1.2em;
    font-weight: normal;
}

/* Section Styles */
.shutdown-info, .contact-info {
    background-color: white;
    padding: 25px;
    margin: 0 auto 30px;
    max-width: 800px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    text-align: center;
}

.shutdown-info {
    border-top: 4px solid #cc4129;
}

.contact-info {
    border-top: 4px solid #333;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
}

th {
    background-color: #333;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

