/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.hero {
  background-color: #002244;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #0066cc;
  color: white;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #004a99;
}

/* Services */
.services {
  display: flex;
  justify-content: space-around;
  padding: 3rem 1rem;
  background-color: #fff;
  flex-wrap: wrap;
}

.service-box {
  background: #e9ecef;
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1 1 250px;
  margin: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* About */
.about {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 1rem;
  background-color: #f8f9fa;
  align-items: center;
}

.about-text {
  flex: 1;
  padding: 1rem;
}

.about-image {
  flex: 1;
  padding: 1rem;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* Testimonials */
.testimonials {
  padding: 3rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.testimonials blockquote {
  font-style: italic;
  margin: 1.5rem auto;
  max-width: 700px;
  padding: 1rem;
  border-left: 4px solid #0066cc;
}

/* Contact */
.contact {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 1rem;
  background-color: #f4f4f4;
}

.contact-form {
  flex: 1;
  padding: 1rem;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background-color: #0066cc;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #004a99;
}

.map {
  flex: 1;
  padding: 1rem;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #002244;
  color: white;
}
