
.outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--bar-height) - var(--title-height) - var(--footer-height) - 20px); /* Adjusted to exclude footer height */
    padding: 20px;
}

.main-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.top-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.section {
    max-width: 300px;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.bottom-row {
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
}

body {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
}

.card-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.card-animate.visible {
    opacity: 1;
    transform: none;
}
