/* Reset and Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}
/* Logo styling */
.logo {
    height: 50px; /* Adjust height as needed */
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

header h1 {
    display: inline;
    vertical-align: middle;
    margin: 0;
}

/* Header Styling */
header {
    background: #28a745;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

header h1 {
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: bold;
    transition: background 0.3s;
}

nav a:hover, nav a.active {
    background: #218838;
    border-radius: 5px;
}

/* Main Content Styling */
main {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

.intro, .content {
    margin-bottom: 2rem;
}

.intro h2 {
    font-size: 1.5rem;
    color: #28a745;
}

.content h2 {
    font-size: 1.4rem;
    color: #28a745;
    margin-bottom: 0.5rem;
}

p {
    margin: 1rem 0;
    text-align: justify;
}

/* Footer Styling */
footer {
    background: #333;
    color: #fff;
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    padding: 1rem;
    width: 100%;
    font-size: 0.9rem;
}


/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    background: #f9f9f9;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #28a745;
    color: #fff;
}

td {
    color: #333;
}

ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}
/* Updated Heading Styling */
h2 {
    color: #2c7a1e;
    font-size: 2em;
    margin-top: 1rem;
    text-align: center;
}

h3 {
    color: #2c7a1e;
    font-size: 1.5em;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Content Image Styling */
.content-image {
    display: block;
    width: 90%; /* Responsive width */
    max-width: 500px; /* Maximum width for large screens */
    margin: 0.5rem auto; /* Center align images */
    border-radius: 8px; /* Soft rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Light shadow for depth */
    transition: transform 0.3s ease; /* Smooth zoom on hover */
}

.content-image:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Paragraph Styling */
.content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    padding: 0 1rem;
}

/* Main Section Styling */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

/* Basic Image Styling */
section img {
    max-width: 80%;
    height: auto;
    border-radius: 5px;
    display: block;
    margin: 15px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Hover Effect to Zoom */
section img:hover {
    transform: scale(1.05); /* Enlarge the image to 1.5x */
    z-index: 10;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); /* Stronger shadow on zoom */
}

/* FAQ Section Styling */
.faq-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-section h3 {
    color: #121212;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 8px;
}

.faq-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}
/* Member Info Section */
.member-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

.member-info h3 {
    color: #080808;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.member-info ul {
    list-style: none;
    padding: 0;
}

.member-info ul li {
    font-size: 1.1em;
    margin: 10px 0;
}

/* Project Summary Section */
.project-summary {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-summary h3 {
    color: #0e0e0e;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.project-summary p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: justify;
}
