body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    flex: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #343A40;
    color: white;
    padding-right: 20px;
}

header h1 {
    margin: 0;
    margin-bottom: -13px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}

nav ul li a.active {
    border-bottom: 3px solid #3F8139;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background-color: #3F8139;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

section.hero {
    background-color: #3F8139;
    color: white;
    padding: 10px 0;
    text-align: center;
}

section.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

section.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

section.companies {
    padding: 40px;
    text-align: center;
}

section.companies h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin: 0 auto 30px;
}

.company-box {
    display: inline-block;
    margin: 20px;
    width: 250px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #3F8139;
}

.company-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.company-box p {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

footer {
    background-color: #343A40;
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 16px;
}

.copyright {
    margin-right: 1300px;
}

.header_logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.companies_logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.contactus {
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    flex: 0 0 35%;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-map {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2,
.contact-map h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    text-transform: uppercase;
}

.contact-info a {
    color: #1a73e8;
    text-decoration: none;
}