main {
    flex: 1;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid #e5e5e5;
}

section:last-child {
    border-bottom: none;
}

.site-footer {
    background-color: var(--text-main);
    color: var(--bg-alt);
    padding: 40px 0;
    text-align: center;
    margin-top: auto;
}

.site-footer p {
    color: var(--text-secondary);
    font-size: 12px;
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.info-item label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.info-item span {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-main);
    display: block;
}