* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0, 70, 160, 0.8), rgba(0, 70, 160, 0.8)), url('https://images.unsplash.com/photo-1556767576-5ec41e4758a7') no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta a {
  margin: 10px;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.btn {
  background-color: #0078d7;
  color: white;
}

.btn:hover {
  background-color: #005fa3;
}

.btn-outline {
  border: 2px solid #fff;
  color: white;
}

.btn-outline:hover {
  background: #fff;
  color: #0078d7;
}

/* Sections */
section {
  padding: 70px 0;
}

section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #004899;
}

.about p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.values {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.values li {
  background: #0078d7;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.service h3 {
  color: #004899;
  margin-bottom: 10px;
}

/* Portfolio */
.portfolio ul {
  list-style: none;
  max-width: 800px;
  margin: auto;
}

.portfolio li {
  background: #fff;
  padding: 15px;
  margin: 10px 0;
  border-left: 5px solid #0078d7;
}

/* Testimonials */
.testimonials blockquote {
  background: #fff;
  border-left: 5px solid #0078d7;
  margin: 20px auto;
  padding: 20px;
  max-width: 700px;
  font-style: italic;
}

.testimonials cite {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #004899;
}

/* Contact */
.contact-info p {
  text-align: center;
  margin: 5px 0;
}

.contact-info a {
  color: #0078d7;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form button {
  background-color: #0078d7;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #005fa3;
}

/* Footer */
.footer {
  background: #004899;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .values {
    flex-direction: column;
    align-items: center;
  }
}
