body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    max-width: 100vw; /* Prevents content overflow */
    overflow-x: hidden; /* Hides horizontal scrolling */
}
header {
    background-color: #3e8e41;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: 'Bodoni MT', serif;
}
header img {
    height: auto;
    width: 150px;
    max-width: 100%; /* Responsive images */
    border-radius: 50%;
    margin-top: 20px;
}
section {
    padding: 20px;
    margin: 20px auto;
    width: calc(100% - 40px); /* Ensures responsiveness */
    max-width: 80%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
section#contact {
    padding-bottom: 60px; /* Adjust the padding so the section is not overlapped */
}
h1, h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}
h2 i {
    font-style: normal; /* Prevent the icon from being italic */
    margin-right: 10px;
}
p {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
}
a {
    color: #3498db;
    text-decoration: none;
}
footer {
    text-align: center;
    padding: 3px;
    background-color: #34495e;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.left img {
    border-radius: 50%;
}
/* Responsive Design */
@media (max-width: 768px) {
    section {
        width: 95%;
    }
    header img {
        height: auto;
        width: 100px;
    }
}
