body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    padding: 0 20px;
    color: #333;
}
main{
    text-align: center;
}
header {
    background-color: #067111a7;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 8px;
}
header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
nav {
  background-color: #333;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}
nav ul li {
  position: relative;
}
nav ul li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 14px 20px;
  transition: background 0.3s;
}
nav ul li a:hover {
  background-color: #81807f;
}
nav ul li ul {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  background-color: #444;
  min-width: 180px;
  list-style: none;
  padding: 0;
}
nav ul li:hover ul {
  display: block;
}
main {
    display: flex;
    justify-content: center;      
    padding: 40px 0;
}


.contact-section {
    width: 80%;
    max-width: 600px;             
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.contact-section h2 {
    margin-top: 0;
    color: #0b513b;
    border-left: 4px solid #ffc107;
    padding-left: 10px;
}


.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #145a32;
    color: white;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #0e4a27;
}
footer {
    background: #145a32;
    text-align: center;
    color: white;
    padding: 15px 0;
    margin-top: 20px;
}