/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: #f7f7f7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header & navigation */
header {
  background: #004080;
  color: #fff;
  padding: 20px 0;
}
header h1 {
  margin: 0;
  font-size: 28px;
  text-align: center;
}
nav {
  text-align: center;
  margin-top: 10px;
}
nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}

/* Hero section */
.hero {
  background: #e6f0ff;
  text-align: center;
  padding: 60px 20px;
}
.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}
.btn-contact {
  background: #004080;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
}
.btn-contact:hover {
  background: #003366;
}

/* Services preview */
.services-preview ul {
  list-style-type: square;
  padding-left: 20px;
}
.services-preview li {
  margin-bottom: 10px;
}
.btn-services {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #004080;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}
.btn-services:hover {
  background: #003366;
}

/* Forms */
form input, form textarea, form button {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
form button {
  background: #004080;
  color: #fff;
  border: none;
  cursor: pointer;
}
form button:hover {
  background: #003366;
}

/* Success message */
.success-message {
  background: #e6f7ee;
  color: #1f7a4d;
  border: 1px solid #1f7a4d;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}

/* Contact info */
.contact-info {
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
}

/* Responsive */
@media(max-width:768px) {
  header h1 {
    font-size: 24px;
  }
  .hero h2 {
    font-size: 28px;
  }
}
