/* Social Media Icons Styles */
.social-media {
  display: flex;
  gap: 15px;
  margin-left: 1000px; /* Push icons to the right */

}

.social-media a {
  color: #fff;
  font-size: 1.5em;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #0073e6; /* Change color on hover */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background: #5fee85;
  color: #fff;
  padding: 10px 0;
}

header h1 {
  margin: 0;
  text-align: center;
}

nav ul {
  
  list-style: none;
  padding: 0;
  text-align:left;
  
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}


/* General Styles */

/* styles.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.contact-page {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-details, .contact-form {
  flex: 1;
  padding: 20px;
}

.contact-details {
  border-right: 2px solid #ddd;
}

.contact-details h2, .contact-form h2 {
  margin-bottom: 20px;
  color: #333;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details ul li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555;
}

.contact-details ul li strong {
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #218838;
}

#responseMessage {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}
/* Footer Styles */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}