.elementor-97 .elementor-element.elementor-element-8086d74{--display:flex;}/* Start custom CSS for html, class: .elementor-element-82018eb *//* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #003366;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #e6a700;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
}

.intro h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 10px;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.card h3 {
  margin-bottom: 10px;
  color: #003366;
}

.card ul {
  list-style: disc;
  padding-left: 20px;
}

.card ul li {
  margin-bottom: 8px;
}

/* CTA Section */
.cta {
  margin-top: 50px;
  padding: 40px 20px;
  background: #003366;
  color: #fff;
  text-align: center;
  border-radius: 8px;
}

.cta h2 {
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .intro h2, .cta h2 {
    font-size: 1.5rem;
  }
}/* End custom CSS */