* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f4f8;
  color: #333333;
  text-align: center;
}

/* Header */
header {
  background-color: #1f3c88;
  color: #ffffff;
  padding: 30px 20px;
}

header h1 {
  margin: 0;
  font-size: 32px;
}

header p {
  margin-top: 8px;
  font-size: 16px;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 30px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #1f3c88;
  margin-bottom: 15px;
}

/* Services */
.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  background: #ffffff;
  margin: 8px 0;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Action Buttons */
.actions {
  margin-bottom: 40px;
}

.actions button {
  padding: 12px 25px;
  margin: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 30px;
  background-color: #f9a825;
  color: #000000;
  transition: 0.3s ease;
}

.actions button:hover {
  background-color: #e68900;
  transform: translateY(-2px);
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.popup-content {
  background: #ffffff;
  width: 320px;
  margin: 120px auto;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
}

.popup-content h2 {
  text-align: center;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.popup-content button {
  width: 100%;
  padding: 10px;
  background-color: #1f3c88;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.popup-content button:hover {
  background-color: #163172;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
  color: #888;
}

/* Map */
.map iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 26px;
  }

  .actions button {
    width: 90%;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(
      rgba(31, 60, 136, 0.85),
      rgba(31, 60, 136, 0.85)
    ),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e") center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1.2s ease;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-buttons button {
  padding: 14px 30px;
  margin: 10px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  background: #f9a825;
  cursor: pointer;
}

.hero-buttons button:hover {
  background: #e68900;
}

/* Mobile */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
