/* CSS styles here */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #3b6847;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 200px;
    height: auto;
    border-radius: 100px;
}

.hero {
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.quote-button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote-button:hover {
    background-color: #2980b9;
}

.main {
    padding: 20px;
}

.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 50px 20px;
    margin-bottom: 20px;
}

.section-content {
    max-width: 50%;
}

.section-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.section-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.section-image {
    max-width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-image {
    text-align: center;
}

.project-image img {
    max-width: 100%;
    border-radius: 5px; /* Adding border radius for a more integrated look */
}

.project-image p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
}

.footer-content {
    text-align: center;
    padding: 20px;
    background-color: #34495e;
    color: #fff;
}

.footer-content p {
    margin: 10px 0;
}
.footer-content a {
    color: rgb(255, 107, 9); /* Change the link color to green */
    text-decoration: none; /* Remove the underline */
}

.footer-content a:hover {
    text-decoration: underline; /* Add underline on hover */
}
.container{
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 992px;
}