.page {
    display: flex;
    flex-direction: column;
}


.container-column {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 40px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.hero h1 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
}

.features-row-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.project {
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    
}

.project img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* Responsive */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
}
