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

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

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles */
header {
  background-color: #4CAF50;
  padding: 20px 0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
}

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

nav .navbar-brand {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav .navbar-brand img {
  margin-right: 10px;
}

nav .links {
  display: flex;
  justify-content: flex-start;
}

nav .links ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

nav .links ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
}

nav .links ul li a:hover {
  text-decoration: underline;
}

/* Special Styles for Sign In/Sign Up Buttons */
nav .links ul li a.signup,
nav .links ul li a.signin {
  border-radius: 20px;
  border: 2px solid white;
  transition: background-color 0.3s, color 0.3s;
}

nav .links ul li a.signup:hover {
  background-color: white;
  color: #4CAF50;
}

nav .links ul li a.signin {
  background-color: #fff;
  color: #4CAF50;
}

nav .links ul li a.signin:hover {
  background-color: #45a049;
  color: white;
}

/* Main Section Styles */
main {
  padding: 50px 0;
}

.onboarding {
  background-color: #fff;
  text-align: center;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.onboarding h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.onboarding p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.onboarding button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
}

.onboarding button:hover {
  background-color: #45a049;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

footer p {
  margin: 0;
}