/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header */
.header {
  background:#007a3d;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.logo {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

.logo-name {
  font-size: 1.8rem;
  font-weight: bold;
}

/* Navigation */
.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 1rem;
}

.nav a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h1 {
  font-size: 3rem;
  color: #004080;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  padding: 15px;
  background-color: #004080;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #003366;
}

/* Contact Info */
.contact-info {
  margin-top: 50px;
  text-align: left;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #004080;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.1rem;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #004d26;
  color: #fff;
}
/* CSS Document */

