body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #003366;
  color: white;
  padding: 1rem 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: bold;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.banner {
  position: relative;
  overflow: hidden;
}

.slim-banner {
  height: 160px;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

/* Content Layout */
.professional-layout {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}

/* Cards */
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform 0.2s ease;
}

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

/* Process grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.process-step {
  background-color: #f4f6f8;
  border-left: 4px solid #007bff;
  padding: 1rem;
  border-radius: 8px;
}

/* List styling */
.styled-list {
  padding-left: 1.2rem;
}

.styled-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.styled-list li::before {
  content: "✔";
  position: absolute;
  left: -1.2rem;
  color: #007bff;
  font-weight: bold;
}

/* Headings */
h1 {
  font-size: 1.75rem;
  margin: 0;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}
/* Services Section */
.services {
  padding: 2rem 1rem;
  background-color: #f0f2f5;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease;
}

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

.service-card img {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 6px;
}
.styled-list {
  padding-left: 1.2rem;
  list-style: none;
}

.styled-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.styled-list li::before {
  content: "✔";
  position: absolute;
  left: -1.2rem;
  color: #007bff;
  font-weight: bold;
}
.section-header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2rem;
  color: #222;
}

