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

header {
    background-color: #165326;
    color: #FDBC49;
    padding: 10px 0;
    text-align: center;
}

header .logo img {
    max-width: 150px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #FDBC49;
    text-decoration: none;
}

.hero {
    background-color: #165326;
    color: #FFFFFF;
    padding: 50px 20px;
    text-align: center;
}

.hero h1, .hero h2 {
    margin: 0 0 10px 0;
}

.hero p {
    font-size: 1.2em;
}

.story, .services, .why-choose-us, .process, .cta {
    padding: 20px;
    text-align: center;
}

.services ul, .why-choose-us ul {
    list-style-type: none;
    padding: 0;
}

.services ul li, .why-choose-us ul li {
    margin: 10px 0;
}

/* Center the process list items */
.process ol {
    list-style-type: decimal;
    padding-left: 0;
    text-align: center;
    display: inline-block;
}

.process ol li {
    text-align: left;
    margin-left: 20px;
}

.cta p {
    font-size: 1.2em;
    margin: 10px 0;
}

/* Add padding above the footer */
footer {
    background-color: #165326;
    color: #FDBC49;
    text-align: center;
    padding: 20px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

.footer-links a {
    color: #FDBC49;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

body > footer {
    padding-bottom: 60px;
}

/* Contact Page Styles */
.contact-hero {
    background-color: #165326;
    color: #FFFFFF;
    padding: 50px 20px;
    text-align: center;
}

.contact-form, .contact-details {
    padding: 20px;
    text-align: center;
}

.contact-form form {
    display: inline-block;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.contact-form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input[type="submit"] {
    background-color: #165326;
    color: #FDBC49;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form input[type="submit"]:hover {
    background-color: #143b25;
}

.map iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border: none;
}


.social-icons {
    text-align: center;
    margin-top: 10px; /* Adjust the top margin as needed */
}

.social-icons a {
    margin: 0 10px; /* Adjust the horizontal spacing between icons */
    display: inline-block;
    color: inherit; /* Use the color inherited from the parent element */
}

.icon-fab {
  color: #165326;;
}

.fa-facebook {
  color: #165326;
}

.fa-twitter {
  color: #165326;
}

.fa-linkedin {
  color: #165326;
}


/* Responsive Styles */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 5px 0;
    }

    .hero, .story, .services, .why-choose-us, .process, .cta {
        padding: 20px;
    }

    .process ol {
        padding-left: 0;
        text-align: left;
    }

    .process ol li {
        margin-left: 0;
    }
}
