/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #0b3d91;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo {
  height: 50px;
  width: 50px;
  margin-right: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #ffd700;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0b3d91, #2563eb);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero button {
  background: #ffd700;
  color: #0b3d91;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero button:hover {
  background: #ffcc33;
}

/* Highlights */
.highlights {
  padding: 50px 20px;
  text-align: center;
}

.highlights h2 {
  color: #0b3d91;
  margin-bottom: 30px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #f2f2f2;
  padding: 25px;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Testimonials */
.voices {
  background: #eaf1ff;
  padding: 60px 20px;
  text-align: center;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonial {
  background: white;
  padding: 20px;
  width: 240px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #0b3d91;
}

/* About Page */
.about {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.mv-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mv-card {
  background: #f5f5f5;
  padding: 20px;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Services Page */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: #f0f0f0;
  padding: 25px;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Contact */
.contact {
  text-align: center;
  padding: 60px 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 20px auto;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #0b3d91;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #2563eb;
}

/* Footer */
footer {
  background: #0b3d91;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.social-icons {
  margin: 10px 0;
}

.icon {
  margin: 0 5px;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    margin-top: 10px;
  }

  .cards, .testimonials, .mv-section, .service-list {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
