@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Roboto, serif;
  background-color: #ffffff;
  color: #222222;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

a {
  color: #e07b00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #0b1f3a;
  padding: 16px 20px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #f5a623;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo span {
  color: #ffffff;
}

.logo:hover {
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav ul li a {
  color: #cccccc;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

nav ul li a:hover {
  color: #f5a623;
  text-decoration: none;
}

nav ul li a.active {
  color: #f5a623;
  font-weight: bold;
}

.btn {
  display: inline-block;
  background-color: #f5a623;
  color: #0b1f3a;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn:hover {
  background-color: #d4891a;
  text-decoration: none;
  color: #0b1f3a;
}

.hero {
  background-color: #0b1f3a;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #f5a623;
}

.hero p {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 28px;
  color: #cccccc;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.hero-full {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page-hero {
  background-color: #0b1f3a;
  color: #ffffff;
  padding: 60px 20px;
}

.page-hero h1 {
  font-size: 2rem;
  color: #f5a623;
  margin-bottom: 12px;
}

.page-hero p {
  font-family: Arial, sans-serif;
  color: #cccccc;
  max-width: 580px;
  line-height: 1.7;
}

main {
  flex: 1;
}

section {
  padding: 48px 20px;
}

section h2 {
  font-size: 1.6rem;
  color: #0b1f3a;
  margin-bottom: 12px;
}

section p {
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: #444444;
  max-width: 680px;
  margin-bottom: 24px;
}

.stats-bar {
  background-color: #f5a623;
  padding: 28px 20px;
}

.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.stat h3 {
  font-size: 1.8rem;
  color: #0b1f3a;
}

.stat p {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #333333;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.card {
  border: 1px solid #dddddd;
  border-radius: 6px;
  padding: 20px;
}

.card h3 {
  font-size: 1.05rem;
  color: #0b1f3a;
  margin-bottom: 8px;
}

.card p {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.service-list {
  list-style: none;
  margin-top: 16px;
}

.service-list li {
  border-left: 4px solid #f5a623;
  padding: 14px 16px;
  margin-bottom: 12px;
  background-color: #fafafa;
  font-family: Arial, sans-serif;
}

.service-list li strong {
  display: block;
  color: #0b1f3a;
  margin-bottom: 4px;
  font-size: 1rem;
}

.service-list li span {
  font-size: 0.85rem;
  color: #666666;
}

address {
  font-style: normal;
  font-family: Arial, sans-serif;
  line-height: 2;
  color: #444444;
  margin-bottom: 28px;
}

form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #333333;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #222222;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

#success-message {
  display: none;
  background-color: #eaf7ea;
  border: 1px solid #5cb85c;
  color: #2d7a2d;
  padding: 16px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  margin-top: 16px;
}

hr {
  border: none;
  border-top: 1px solid #eeeeee;
}

footer {
  background-color: #0b1f3a;
  color: #aaaaaa;
  text-align: center;
  padding: 24px 20px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

footer a {
  color: #f5a623;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  nav ul {
    gap: 14px;
  }
}
