main {
    max-width: 1200px;
    margin: 6rem auto 2rem auto;
    padding: 0 1rem;
    color: var(--color-text);
}

main h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

main h2 {
    font-size: 1.25rem;
    color: #00cad7;
    margin-bottom: 2rem;
}

.section {
    margin-bottom: 3rem;
}

.section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: orange;
}

.img-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.img-row img {
    max-width: 100%;
    width: calc(33.33% - 1rem);
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #111;
}

.section p {
    font-size: 1rem;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .img-row img {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .img-row img {
        width: 100%;
    }
}
