/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

/* Contact Form Section */
.contact-form {
  padding: 40px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-title-details {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

.title-part {
  display: flex;
  align-items: center;
  gap: 8px;
}

.separator-contact-title {
  width: 30px;
  height: 2px;
  background-color: #ccc;
  margin: 0 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  font-size: 0.95rem;
}

.required {
  color: red;
}

input[type="text"],
input[type="email"],
input[type="file"],
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  background-color: #027bd2;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #025fb1;
}

/* Contact Info Section */
.contact-info {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contact-title-details a {
  text-decoration: none;
  color: #027bd2;
  font-weight: bold;
  font-size: 1.5rem;
}

.separator-contact-details {
  width: 50px;
  height: 2px;
  background-color: #ccc;
}