/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #212529;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #003366;
  color: #fff;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #f4c542;
}

.cta {
  background-color: #f4c542;
  color: #003366;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #d39e00;
  color: #fff;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #003366 40%, #00509d);
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Solutions Section */
.solutions-hero {
  background-color: #002244;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.solutions-list {
  background-color: #ffffff;
  padding: 3rem 1rem;
}

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

.solutions-list li {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-left: 6px solid #003366;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.solutions-list li:hover {
  transform: translateY(-3px);
  background-color: #eaf3ff;
}

.solutions-list strong {
  display: block;
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

/* Services Section - REVERTED TO ORIGINAL STYLE */
.services-section {
  background-color: #f8f8f8;
  padding: 2rem 1rem;
}

.services-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-left: 5px solid #004080;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card h4 {
  color: #004080;
  margin-top: 0;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: #eaf6ff;
}

/* Pricing Section */
.pricing-section {
  background-color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 5px solid #003366;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background-color: #f0f8ff;
}

.card h3 {
  color: #003366;
  margin-bottom: 0.75rem;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
