/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Header Styles */
header {
  background-color: #0066cc;
  color: white;
  padding: 10px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* Hero Section */
#hero {
  background-color: #004f8d;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

#hero h2 {
  font-size: 36px;
}

#hero p {
  font-size: 18px;
  margin: 20px 0;
}

.cta-button {
  background-color: #ff6f00;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Features Section */
#features {
  background-color: white;
  padding: 50px 0;
}

#features h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.feature-cards {
  display: flex;
  justify-content: center;
}

.feature-card {
  background-color: #f4f4f4;
  margin: 0 20px;
  padding: 30px;
  text-align: center;
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
}

/* Footer Section */
footer {
  background-color: #003366;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* Login Page Styles */
#login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #e4e4e4;
}

.login-container {
  background-color: white;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  border-radius: 8px;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

button.cta-button {
  background-color: #0066cc;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
}

button.cta-button:hover {
  background-color: #0057a0;
}

p {
  text-align: center;
  font-size: 14px;
}

a {
  color: #0066cc;
  text-decoration: none;
}
