* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    src: local('FreightDisp Pro Medium Regular '), local('FreightDisp-Pro-Medium-Regular-'),
        url('FreightDispProMedium-Regular.woff2') format('woff2'),
        url('FreightDispProMedium-Regular.woff') format('woff'),
        url('FreightDispProMedium-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
}

header {
    background-color: #01582e;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 6.5%;
    height: auto;
}

nav {
    background-color: #01582e;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: white;
    color: #01582e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

#contact h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #01582e;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.social-media-item {
    text-align: center;
}

.social-media-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.social-media-item a:hover {
    transform: scale(1.05);
}

.social-media-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 0.5rem;
}

.contact-form {
    margin-top: 3rem;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #01582e;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
}

button[type="submit"] {
    background-color: #01582e;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #014023;
}

footer {
    background-color: #f5f5f5;
    padding: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 150px;
    margin-left: 3rem;
}

.footer-links h3 {
    margin-bottom: 0.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #333;
    text-decoration: none;
}

.footer-subscribe form {
    display: flex;
}

.footer-subscribe input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-right: none;
}

.footer-subscribe button {
    background-color: #01582e;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ccc;
}

.social-icons a {
    margin-left: 1rem;
    color: #333;
    text-decoration: none;
}
