body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #00529B; /* Blue */
    color: #FFFFFF; /* White */
    padding: 20px;
    text-align: center;
    font-size: 2em;
}

.container {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr; /* Single column */
    padding: 20px;
    gap: 20px;
}

.main-content {
    text-align: center;
}

.main-content h1 {
    font-size: 2.5em;
    color: #D2222D; /* Red */
}

.actionable-steps {
    margin-top: 40px;
    padding: 20px;
    background-color: #FFFFFF;
    border: 2px solid #00529B;
    border-radius: 10px;
}

.actionable-steps h2 {
    color: #D2222D; /* Red */
}

.actionable-steps ul {
    list-style-type: none;
    padding: 0;
}

.actionable-steps ul li {
    margin-bottom: 10px;
}

#countdown {
    font-weight: bold;
}

footer {
    background-color: #00529B; /* Blue */
    color: #FFFFFF; /* White */
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.links {
    margin-top: 40px;
}

.links h2 {
    color: #D2222D; /* Red */
}

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

.links ul li {
    margin-bottom: 10px;
}

.links ul li a {
    color: #00529B; /* Blue */
    text-decoration: none;
}

.links ul li p {
    margin: 5px 0 0 0;
    font-size: 0.9em;
    color: #666;
}

#no-kings-logo {
    position: fixed;
    right: 10px;
    bottom: 60px; /* Adjust this value to position it above the footer */
    width: 15vw;
    max-width: 80px;
    min-width: 50px;
}

#no-kings-logo img {
    width: 100%;
}

#donation-guide-title {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #00529B;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

#donation-guide-title:hover {
    background-color: #003f7f;
}

#donation-guide-content.hidden {
    display: none;
}

#donation-guide-categories,
#donation-guide-subcategories,
#donation-guide-organizations {
    margin-top: 20px;
}

.category-button,
.subcategory-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #00529B;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.organization {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}

.organization.highlighted {
    border-left: 5px solid #D2222D;
}

.organization h3 {
    margin-top: 0;
    color: #00529B;
}

.about-section {
    background-color: #eaf2fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.about-content {
    width: 80%;
    text-align: left;
    max-width: 960px;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
}

.about-content a {
    color: #D2222D; /* Red */
    text-decoration: underline;
}
