/* Base Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fc;
  color: #333;
  text-align: center;
  line-height: 1.6;
}

/* Logo Styling */
.main-logo {
  max-width: 220px;
  margin-top: 30px;
}

/* Header & Navigation */
.header-centered {
  background: linear-gradient(to right, #101c57, #334a94);
  padding: 30px 0;
  text-align: center;
}

/* Services Section */
.services {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.services h2 {
  font-size: 2em;
  color: #101c57;
  margin-bottom: 30px;
}

.services p {
  font-size: 1.1em;
  margin-bottom: 1.2em;
  text-align: left;
}

.services ul {
  list-style-type: none;
  padding: 0;
}

.services ul li {
  background-color: #ffffff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: left;
}

/* Service Cards */
.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  max-width: 80px;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.3rem;
  color: #101c57;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.learn-more {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #101c57;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.learn-more:hover {
  background-color: #334a94;
}

/* Testimonials */
#testimonials {
  background-color: #e7ecf7;
  padding: 40px 20px;
}

.testimonial {
  margin: 25px auto;
  max-width: 600px;
  font-style: italic;
}

/* Contact Form */
.contact-section {
  padding: 40px 20px;
  background-color: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  background-color: #334a94;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #101c57;
}

/* Footer */
footer {
  padding: 20px;
  background-color: #f0f0f0;
  font-size: 0.9rem;
}

.social a {
  text-decoration: none;
  color: #101c57;
}

.social a:hover {
  text-decoration: underline;
}

/* Hamburger Menu */
.hamburger-header {
  text-align: center;
  margin-top: 1rem;
}

.hamburger-btn {
  background-color: #101c57;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.hamburger-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.hamburger-nav a {
  color: white;
  text-decoration: none;
  margin: 8px 0;
  font-weight: 500;
}

.hamburger-nav a:hover {
  text-decoration: underline;
}

.hamburger-nav.show {
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    flex-direction: column;
    align-items: center;
  }

  .topnav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .topnav a {
    margin: 5px 0;
  }
}
