.services-page {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
    align-items: stretch; /* Ensures children take full width */
}

.glassmorphism-tile {
    background: var(--bg-2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border);
    width: calc(100% - 40px);
}



.date {
    color: var(--date);
}