body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.header {
    background-color: #333333; /* Dark Gray */
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-image {
    max-height: 70px;
    margin-right: 20px;
}

.header nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.header nav a:hover {
    text-decoration: underline;
}

.contact-info-header a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.contact-info-header a:hover {
    text-decoration: underline;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container h1, .container h2 {
    color: #1a237e; /* Dark blue/navy for main headings */
    margin-bottom: 20px;
}

.container h1 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 20px;
}

.container h2 {
    font-size: 2em;
    margin-top: 30px;
}

.container p {
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Homepage Specific Styles (Extended) */

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 50px 20px;
    background-color: #e0f2f7; /* Light blue background */
    border-radius: 5px;
    margin-bottom: 30px;
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero h1 {
    color: #1a237e; /* Dark blue/navy */
    font-size: 2.8em;
    margin-bottom: 15px;
    text-align: left;
}

.hero .subheadline {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero .hero-cta {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2em;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    border-radius: 5px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 40px 20px;
    text-align: center;
}

.why-choose-us h2 {
    color: #ff9800; /* Orange/amber */
    margin-bottom: 30px;
    font-size: 2.2em;
}

.why-choose-us .benefit {
    display: inline-block;
    width: 30%;
    margin: 20px;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    vertical-align: top;
}

.why-choose-us .benefit img {
    max-width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.why-choose-us .benefit h3 {
    color: #1a237e; /* Dark blue/navy */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.why-choose-us .benefit p {
    line-height: 1.7;
}

/* Featured Services Section */
.featured-services {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 30px;
}

.featured-services h2 {
    color: #ff9800; /* Orange/amber */
    margin-bottom: 30px;
    font-size: 2.2em;
    text-align: center;
}

.featured-services .featured-service {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 20px;
    align-items: center;
}

.featured-services .featured-service img {
    max-width: 80px;
    height: auto;
}

.featured-services .featured-service h3 {
    color: #1a237e; /* Dark blue/navy */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.6em;
}

.featured-services .featured-service p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.featured-services .featured-service a {
    color: #ff9800; /* Orange/amber */
    text-decoration: none;
    font-weight: bold;
}

.featured-services .featured-service a:hover {
    text-decoration: underline;
}

/* Our Process Section */
.our-process {
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.our-process h2 {
    color: #ff9800; /* Orange/amber */
    margin-bottom: 30px;
    font-size: 2.2em;
}

.our-process .process-step {
    display: inline-block;
    width: 20%;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    vertical-align: top;
}

.our-process .process-step h3 {
    color: #1a237e; /* Dark blue/navy */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.our-process .process-step p {
    line-height: 1.7;
    font-size: 0.95em;
}

/* Testimonials Section */
.testimonials {
    padding: 40px 20px;
    background-color: #e0f2f7; /* Light blue background */
    border-radius: 5px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonials h2 {
    color: #ff9800; /* Orange/amber */
    margin-bottom: 30px;
    font-size: 2.2em;
}

.testimonials .testimonial {
    max-width: 70%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-style: italic;
    line-height: 1.8;
}

.testimonials .testimonial cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: bold;
    color: #333;
}

/* Call to Action Bottom Section */
.call-to-action-bottom {
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 30px;
}

.call-to-action-bottom h2 {
    color: #1a237e; /* Dark blue/navy */
    margin-bottom: 20px;
    font-size: 2.2em;
}

.call-to-action-bottom p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.call-to-action-bottom .cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2em;
    margin: 10px;
}

.call-to-action-bottom .secondary-cta {
    background-color: #ddd;
    color: #333;
}

.call-to-action-bottom .secondary-cta:hover {
    background-color: #ccc;
}

/* Footer Styles */
.site-footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-container {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #ff9800; /* Orange/amber */
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-section p, .footer-section li {
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section i {
    margin-right: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8em;
    color: #ddd;
    border-top: 1px solid #555;
    margin-top: 30px;
}
/* Contact Page Specific Styles */
.contact-details {
    margin-top: 30px;
}

.contact-details h2 {
    color: #ff9800; /* Orange/amber */
    margin-bottom: 20px;
    font-size: 2em;
}

.contact-details p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-details a {
    color: #1a237e; /* Dark blue/navy */
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details form {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-details form div {
    margin-bottom: 15px;
}

.contact-details form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.contact-details form input[type="text"],
.contact-details form input[type="email"],
.contact-details form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box; /* Important for padding and border to be inside the width */
    font-size: 1em;
}

.contact-details form textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-details form button[type="submit"] {
    background-color: #ff9800; /* Orange/amber */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-details form button[type="submit"]:hover {
    background-color: #f57c00; /* Darker orange/amber */
}


/* Basic styling for the address in the footer */
footer .address {
  font-size: 0.9em; /* Adjust the font size as needed */
  color: #fff; /* Changed color to white */
  line-height: 1.5; /* Adjust line height for readability */
  margin-top: 10px; /* Add some spacing above the address */
  text-align: center; /* Center the address in the footer */
}

/* You can add more specific styling for mobile if needed within your responsive.css */
@media (max-width: 768px) {
  footer .address {
    font-size: 0.8em; /* Slightly smaller on mobile if desired */
    text-align: center; /* Ensure it's centered on mobile */
    color: #fff; /* Ensure white color on mobile as well */
  }
}
