body {
    font-family: Helvetica, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

h1 {
    margin-top: 120px;
    margin-bottom: 10px;
    font-size: 60px;
    color: #333;
}

p {
    font-size:20px;
    padding: 90px;
}

h6 {
    margin: 5px;
    font-size: 25px;
    color: #333;
    padding-bottom: 50px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers the columns */
    gap: 30px; /* Adds spacing between columns */
    padding-bottom: 20px;
}

.column {
    width: 25%; /* Adjusts column width for equal spacing */
    padding: 20px; /* Reduces padding to prevent overcrowding */
}

.column img {
    width: 100%; /* Ensures images take full column width */
    height: auto;
    margin-bottom: 20px; /* Adds more spacing between rows */
}

/* Responsive layout - switches to two columns */
@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - stacks images into one column */
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .column {
        flex: 100%;
        max-width: 100%;
        padding: 10px; /* Reduce padding for smaller screens */
    }

    h1 {
        font-size: 40px; /* Reduce heading size for better fit */
    }

    h6 {
        font-size: 18px; /* Adjust subheading for readability */
        padding-bottom: 20px;
    }

    .column img {
        margin-bottom: 10px; /* Reduce spacing between images */
    }
}