@charset "ISO-8859-1";
/* common.css */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.header, .footer {
	background-color: #f0f0f0;
	text-align: center;
	padding: 20px 0;
}

.main-banner {
    color: #005e00;
    height: auto; /* Adjust height for smaller screens */
    padding: 20px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center; /* Ensure text is centered */
}

#logo {
    height: 250px;
    margin-left: 20px;
    margin-right: 20px;
}

#interior01 {
    height: 350px;
}

#image02 {
    height: 220px;
}

.services, .contact {
	padding: 20px 20px;
	text-align: center;
}

.about {
	padding: 0px 0px;
	text-align: center;
}
.phototitle {
	text-align: center;
}

.footer {
	font-size: 0.8em;
}

nav {
	background-color: #007bff;
	padding: 10px 0;
}

nav a {
	color: white;
	text-decoration: none;
	padding: 0 15px;
}

/* Add this CSS to your common.css file or in a <style> tag */
.table-services {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1.0em;
    min-width: 300px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: none;
}

.table-services thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.table-services th, 
.table-services td {
    padding: 12px 15px;
}

.table-services tbody tr {
    border-bottom: 1px solid #dddddd;
}

.table-services tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.table-services tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

@media screen and (max-width: 768px) {
    .table-services {
        /* Adjust table styles for mobile here */
        box-shadow: none; /* Example: Remove shadow on small screens */
    }
    .table-services thead tr {
        background-color: #007bff; /* Slightly different color for mobile */
    }
    .table-services tbody tr:last-of-type {
    border-bottom: 2px solid #007bff;
}
    /* Ensure text is readable and not too small on mobile */
    .table-services th, .table-services td {
        padding: 8px;
        font-size: 1.0em;
    }
}

.photo-pair {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.photo {
    flex-basis: 48%; /* Adjust this value based on your preference */
    text-align: center;
}

.photo p {
    font-weight: bold;
    margin-top: 8px;
}

.photo img {
    width: 100%;
    height: auto;
}

/* Responsive adjustments for smaller screens (e.g., iPhones) */
@media screen and (max-width: 768px) {
    .photo {
        flex-basis: 100%; /* Make each photo take full width */
    }
}

/* Contact Methods Styles */
.contact-info {
    margin-bottom: 30px;
    text-align: center;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1em;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-methods {
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 20px;
}

.contact-methods h3 {
    text-align: center;
    color: #005e00;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-option {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-option h4 {
    color: #005e00;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.contact-option p {
    margin: 10px 0;
    color: #666;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.map-container {
    text-align: center;
    margin-top: 20px;
}

/* Responsive contact methods */
@media screen and (max-width: 768px) {
    .contact-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-methods {
        margin: 0 10px 30px 10px;
    }
    
    .map-container iframe {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
}


