/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #1D1D1F;
    text-align: center;
}

/* Main Content Styles */
main {
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #007AFF;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1D1D1F;
}

.project-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.project-gallery img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.next-page-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007AFF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.next-page-button:hover {
    background-color: #005BB5;
    transform: translateY(-3px);
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #F5F5F7;
    color: #1D1D1F;
    margin-top: 40px;
}
