/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

header nav {
    background: #0073e6;
    padding: 10px;
    text-align: center;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: #f9f9fc;
    text-align: center;
}

.about-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.about-left {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.about-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.about-left p,
.about-left ul {
    font-size: 1rem;
    margin-bottom: 15px;
}

.about-left ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Gallery - Keep Original Image Size and Wrap */
.gallery {
    display: flex;
    flex-wrap: wrap;
    /* Allow images to wrap to the next row */
    justify-content: center;
    /* Center images */
    gap: 10px;
    /* Reduce spacing between images */
    margin-top: 30px;
}

.gallery img {
    max-width: 100%;
    /* Ensure images keep their original size */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Report Section */
.project-report {
    padding: 50px;
    text-align: center;
}

.project-report h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.project-report p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.report-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    background: #005bb5;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: #0073e6;
}