/* Basic Reset & Body Styles */
body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; /* Common sans-serif stack */
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Light gray background for the page */
    color: #525252; /* Original text color */
    font-size: 14px; /* Base font size */
    line-height: 1.6;
}

/* Page Wrapper for Centering */
.page-wrapper {
    background-color: #ffffff; /* White background for the main content area */
}

/* Main Table Structure (from original) */
.main-table {
    border-collapse: collapse; /* Clean up table borders */
    background-color: #ffffff;
    margin: 0 auto; /* Center the table */
}

.sidebar-left, .sidebar-right {
    background-color: #e7e7e7; /* Original sidebar color */
}

.content-area {
    padding: 15px; /* Add some padding inside the main content cell */
    background-color: #ffffff;
}

/* Navigation Table */
.navigation-table {
    background-color: #cccccc; /* Original nav background */
}
.navigation-table .nav-cell {
    background-color: #f7f7f7; /* Original nav cell background */
}
.navigation-table img { /* Ensure nav images are vertically aligned */
    vertical-align: middle;
}


/* Headings */
h1, h2, h3 {
    color: #333; /* Darker color for headings */
    margin-top: 0;
}

h2 {
    font-size: 24px;
    border-bottom: 2px solid #63b463; /* Accent color from original link color */
    padding-bottom: 8px;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    color: #444;
    margin-bottom: 15px;
}

/* Links */
a {
    color: #63b463; /* Original link color */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:visited {
    color: #000099; /* Original visited link color */
}

/* Sections Styling */
.section {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fdfdfd;
}

.news-section h3 {
    font-size: 16px;
    margin-bottom: 0;
}
.news-section img {
    vertical-align: middle;
    margin-right: 5px;
}

/* Phone Number Highlight */
.phone-number {
    color: #d9534f; /* A standout color for phone number */
    font-weight: bold;
}

/* Images */
.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 3px;
}
.centered-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.service-item {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.service-item h3 {
    font-size: 18px;
    color: #63b463;
    margin-top: 10px;
    margin-bottom: 10px;
}
.service-item p {
    font-size: 13px;
    color: #666;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive grid */
    gap: 15px;
}

.gallery-item {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.gallery-item p {
    font-size: 12px;
    color: #777;
    margin-top: 8px;
}


/* Footer Navigation and Info */
.footer-nav {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}
.footer-nav a {
    margin: 0 5px;
}

.company-info {
    text-align: center;
    font-size: 13px;
    margin-bottom: 15px;
}

/* Original font styling for copyright */
font[color="#808040"] font[color="#525252"] {
    font-size: 12px !important; /* Ensure original copyright style is maintained */
}