/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
}

/* Project Overview Section */
.project-overview {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.project-overview h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.project-overview p {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 60px 0;
    background-color: #fff;
}

.photo-gallery h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
}

.gallery-item p {
    font-size: 16px;
    margin-top: 10px;
    color: #7f8c8d;
}

/* Hover effect for gallery items */
.gallery-item:hover {
    transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.why-choose h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.why-choose ul {
    list-style-type: none;
    text-align: center;
}

.why-choose ul li {
    font-size: 18px;
    margin: 10px 0;
}

/* Footer */
footer {
    background-color: #34495e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
}
