.no-underline {
    text-decoration: none !important;
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.icon-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.project-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.project-image:hover {
    transform: scale(1.05);
}
