body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.navbar {
    background-color: #9A2A2A;
}
.navbar-brand, .navbar-nav .nav-link {
    color: #9d9d9d;
}
.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: white !important;
}
.navbar-nav .nav-link.active {
    color: white;
}
.content {
    padding: 20px;
    background: #ebf0ef;
    flex: 1 0 auto;
}
.footer {
    border-top: 1px solid grey;
    background-color: #ebf0ef;
    color: #132120;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 60px;
}
.footer a {
    color: #9d9d9d;
    text-decoration: none;
    flex-shrink: 0;
}
.footer a:hover {
    color: white;
}
.content > center > h1 {
    padding-bottom: 30px;
}
.row:not(:last-child) {
    margin-bottom: 20px;
}
.row [class^="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}
.grid-item {
    margin: 10px;
    border: 2px solid black;
    padding: 20px;
    background-color: white;
    transition: transform .2s;
}
.grid-item a {
    color: red;
    font-weight: bold;
    text-decoration: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.grid-item:hover {
    transform: scale(1.05);
    cursor: pointer;
    background-color: #f0f0f0;
}
.subscribe-section {
    text-align: center;
    padding: 20px;
    background: #ebf0ef;
    border-top: 1px solid #d3d3d3;
}
.subscribe-link {
    color: #007bff;
    text-decoration: underline;
}
.sidebar {
    background-color: #f8f9fa;
    padding: 10px;
    border-right: 1px solid #ccc;
}
.sidebar a {
    text-decoration: none;
    color: #000;
    display: block;
    padding: 8px;
    border-left: 3px solid transparent;
}
.sidebar a.active {
    border-left-color: blue;
    font-weight: bold;
}
.main-content {
    padding: 20px;
    background: #f8f9fa;
}
.main-content h2 {
    color: #000;
}
.main-content p, .main-content ul {
    color: #555;
}
.main-content ul {
    list-style-type: none;
    padding: 0;
}
.main-content ul li {
    padding: 2px 0;
}
