*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}


header nav {
    background-color: #333;
    padding: 1rem;
}

header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 1rem;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}


#hero {
    background-color: #1F442E;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.5rem;
}


#contact-us {
    padding: 40px 20px;
    text-align: center;
}

#contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

#contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1F442E;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}


#confirmation-message {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

#confirmation-message h2 {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

#confirmation-message p {
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding: 20px 25px;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.nav-links{
     display: flex;
     list-style-type: none;
     justify-content: space-between;
     align-items: center;
     gap: 25px;
}

.nav-links li a{
    text-decoration: none;
    color: white;
}

.nav-links li a:hover{
    
    color: #ff6347;
}

@media (max-width: 768px) {
    #contact-form {
        padding: 20px;
    }

    #contact-form h2 {
        font-size: 2rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }

    button {
        font-size: 1rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {

     header nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    #contact-form {
        padding: 15px;
    }

    #contact-form h2 {
        font-size: 1.8rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }

    button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }

     footer{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .nav-links{
     display: flex;
     list-style-type: none;
     flex-direction: column;
     align-items: center;
     gap: 5px;
}
}