body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    width: 100%;
    padding: 20px;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

section {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

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

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.6);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #f2f2f2;
}
h3, ol {
    text-align: center;
}


footer {
    background-color: #333;
    color: white;
    padding: 30px 10px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-left form {
    text-align: left;
}

.footer-left input,
.footer-left textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: none;
    border-radius: 4px;
}

.footer-left input[type="submit"],
.footer-left input[type="reset"] {
    background-color: #555;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.centered-image img {
    border: 4px solid #ccc;        
    border-radius: 8px;            
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
ol {
    padding-left: 0;
    margin: 0 auto;
    display: block;
    list-style-position: inside;
}

ol li {
    margin-bottom: 10px;
}
ul {
    list-style-position: inside; 
    padding-left: 0; 
    text-align: center; 
    margin: 0 auto; 
    width: fit-content; 
}

ul li {
   
    margin-bottom: 10px; 
}
.centered-image img:hover {
    transform: scale(1.03); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
	
}
.footer-left input[type="submit"]:hover,
.footer-left input[type="reset"]:hover {
    background-color: #777;
}
.centered-text {
    text-align: center;
}
.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: left;
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-form form {
    width: 100%;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 5px;
    margin-top: 2px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
.contact-form input[type="submit"],
.contact-form input[type="reset"] {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}
.contact-form input[type="submit"]:hover,
.contact-form input[type="reset"]:hover {
    background-color: #2980b9;
}
.centered-text p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #333;
}
.social-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.social-icons a:hover svg {
    transform: scale(1.2);
    fill: #00acee;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
