body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background: url('mountain-background.jpg') no-repeat center center fixed;
    background-size: cover;
}

header {
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(0, 100, 0, 0.6);
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

nav {
    background-color: rgba(0, 60, 0, 0.8);
    padding: 10px;
    text-align: center;
}

nav a {
    color: #a5d6a7;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    background-color: rgba(0, 80, 0, 0.7);
    padding: 40px;
    margin: 0 auto;
    max-width: 800px;
    border-radius: 10px;
}

.contact-info h2, .quote-form h2 {
    border-bottom: 2px solid #a5d6a7;
    padding-bottom: 5px;
}

.founders {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.founder {
    background-color: rgba(0, 128, 0, 0.4);
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
}

.quote-form {
    margin-top: 30px;
}

.quote-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.quote-form input, .quote-form textarea, .quote-form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

.quote-form button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.quote-form button:hover {
    background-color: #1b5e20;
}

a {
    color: #a5d6a7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 60, 0, 0.8);
    font-size: 0.9rem;
}
