/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f0f0f0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #007BFF;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    background-color: #f0f0f0;
    padding-bottom: 80px; /* Add some space at the bottom so content doesn't overlap with the fixed footer */
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%; 
    max-width: 1200px;
}

.contact-info {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #007BFF;
}

.contact-details {
    font-size: 1rem;
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-details p {
    margin: 10px 0;
}

.contact-details a {
    color: #007BFF;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-image {
    flex: 1;
    text-align: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Fixed Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    position: fixed; /* Fix the footer to the bottom of the screen */
    bottom: 0;
    width: 100%; /* Ensure it spans the entire width */
    z-index: 10; /* Ensure it's on top of content */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-left p,
.footer-right p {
    margin: 5px 0;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
    margin-right: 30px; /* Slightly moves the phone numbers to the left */
}

.footer-logo {
    max-width: 100px;
    height: auto;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right ul li {
    margin: 5px 0;
}

.footer-right a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
    font-size: 16px;
}

.footer-right a:hover {
    text-decoration: underline;
}
