/* General Reset */
body, h1, h2, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
.hero {
  background: linear-gradient(to bottom right, hsl(0, 0%, 100%), #ffffff);
  color: #350af5;
  padding: 20px 15px 40px;
  text-align: center;
  position: relative;
}

.logo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  margin-bottom: 20px;
}

.logo-header img {
  width: 150px;
  height: auto;
}

nav {
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.nav-container ul {
  display: flex;
  gap: 20px;
}

.nav-container ul li a {
  padding: 10px 15px;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s;
}

.nav-container ul li a:hover {
  background: #fcfdfd;
}

/* Section Styling */
section {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
  color: #007bff;
  margin-bottom: 10px;
  font-size: 1.5rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

section p {
  margin: 10px 0;
}

.cta-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer h2 {
  margin-bottom: 10px;
}

footer p {
  margin: 5px 0;
}