.grid-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.home-layout {
    background-color: #fdfdfd;
}

.main-content {
    padding-top: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-section {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 1.75rem !important;
    font-weight: 850 !important;
    letter-spacing: -0.03em;
    color: #0f172a;
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 2rem !important;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.title-description {
    font-size: 0.9rem;
    font-weight: 400;
    color: #64748b;
    letter-spacing: normal;
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 100px;
    }
}