

.contact-page {
  max-width: 1200px;
  margin: 100px;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1.2em;
  color: #555;
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-section {
  flex: 1 1 600px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-section h2 {
  margin-bottom: 20px;
  font-size: 1.8em;
  color: #007BFF;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 15px;
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.contact-info {
  margin-top: 80px;
  flex: 1 1 300px;
}

.contact-info h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #007BFF;
}

.contact-info p {
  font-size: 1em;
  margin-bottom: 10px;
}

.contact-info a {
  color: #007BFF;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
  }
}
