.mdc-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     background-color: #295D92;
     height: 80px;
     padding: 10px 16px;
     box-sizing: border-box;
     width: 100%;
     font-family: Arial, Helvetica, sans-serif;
}

.mdc-header__left {
     display: flex;
     align-items: center;
     gap: 12px;
}

.mdc-header__hamburger {
     color: #fff;
     font-size: 20px;
     cursor: pointer;
     line-height: 1;
}

.mdc-header__logo {
     display: flex;
     flex-direction: column;
     background-color: #295D92;
     border: 2px solid #fff;
     border-radius: 20px;
     padding: 2px 12px;
     line-height: 1.15;
}

.mdc-header__logo-top {
     color: #fff;
     font-size: 11px;
     font-weight: bold;
     letter-spacing: 1px;
     text-transform: uppercase;
}

.mdc-header__logo-bottom {
     color: #8DC63F;
     font-size: 9px;
     font-weight: bold;
     letter-spacing: 2px;
     text-transform: uppercase;
}

.mdc-header__title {
     color: #fff;
     font-family: "Roboto", sans-serif;
     font-size: 1.2rem;
     font-weight: bold;
     letter-spacing: 0.5px;
     text-transform: uppercase;
}

body {
     background-color: #f0f4f8;
     margin: 0;
     padding: 0;
}

.tile-page-title {
     font-family: "Roboto", sans-serif;
     font-size: 1.1rem;
     font-weight: bold;
     color: #295D92;
     text-align: center;
     padding: 24px 16px 8px;
     letter-spacing: 0.5px;
}

.tile-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: 16px;
     padding: 24px 32px;
     max-width: 1200px;
     margin: 0 auto;
}

.tile {
     background-color: #295D92;
     color: #fff;
     font-family: "Roboto", sans-serif;
     font-size: 0.95rem;
     font-weight: bold;
     text-align: center;
     text-decoration: none;
     padding: 24px 12px;
     border-radius: 6px;
     border-bottom: 4px solid #8DC63F;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 80px;
     transition: background-color 0.2s, transform 0.1s;
     box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.tile:hover, .tile:focus {
     background-color: #1a4570;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0,0,0,0.2);
     color: #fff;
     text-decoration: none;
}
