* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background:#6d597a;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

nav a.active,
nav a:hover {
  text-decoration: underline;
  color: #ffd700;
}

.contact {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.contact h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #444;
}

.contact-details {
  margin-bottom: 20px;
  padding: 10px;
  background: #f1f1f1;
  border-radius: 6px;
}

.contact-details p {
  margin: 8px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin: 10px 0 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6d597a;
  outline: none;
}

.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background: #6d597a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #6d597a;
}

footer {
  margin-top: 40px;
  background: #6d597a;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffd700;
}

.footer-section p,
.footer-section a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  font-size: 13px;
  color: #aaa;
}
