/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

img {
    width: 250px; /* Set a fixed width for the emblem */
    height: 250px; /* Set the same height to make it a perfect circle */
    object-fit: cover; /* Ensures the image scales properly within the circle */
    border-radius: 50%; /* Crops the image into a circle */
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3)); /* Optional: Adds a shadow effect */
}

/* Ensure Main Content Fills the Viewport */
main {
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
    height: 95vh;
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
}

/* Contact Card */
.contact-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px; /* Set a maximum width for the card */
    width: 100%; /* Make it responsive */
}

/* Footer Alignment */
footer {
    margin: 0;
    padding: 0;
    position: relative;
}
