/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f0f2f5;
  color: #fff;
}

a {
  text-decoration: none;
  color: #ffd700;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin: 50px 0 30px;
}

.section-title h1 {
  font-size: 2.8rem;
  color: #ffd700;
}

.section-title p {
  font-size: 1.1rem;
  color: #fff;
}

/* CONTACT SECTION */
.contact-section {
  background: #002b5c;
  padding: 50px 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-details,
.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-details h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.contact-details p {
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-weight: bold;
}

/* FORM STYLES */
.contact-form form {
  background: #001f3f;
  padding: 20px;
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  background: #ffd700;
  color: #002b5c;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #e6c200;
}

/* MAP */
.map {
  margin-top: 50px;
  text-align: center;
}

.map h2 {
  margin-bottom: 20px;
  color: #ffd700;
}

/* FAQ */
.faq {
  margin-top: 60px;
}

.faq h2 {
  text-align: center;
  color: #ffd700;
  margin-bottom: 30px;
}

.faq details {
  background: #001f3f;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.faq summary {
  font-weight: 600;
  font-size: 1.05rem;
}

.faq p {
  margin-top: 10px;
  color: #eee;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .section-title h1 {
    font-size: 2rem;
  }
}
