/* General Reset */
body, h1, h2, h3, p, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0CA1D2;
  color: #ffffff;
  line-height: 1.6;
  padding: 20px; /* Added padding to prevent text from being flush with the edges */
}

/* Make links readable inside main content */
main a {
  color: #0CA1D2; /* Matches your brand color, making it visible */
  text-decoration: underline; /* Improves readability */
  font-weight: bold; /* Makes it stand out */
}

main a:hover {
  color: #087a9f; /* Slightly darker shade on hover */
}


/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 20px;
  background-color: #0CA1D2;
}

.hero .mascot {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

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

.hero .button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #0CA1D2;
  background-color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
}

/* Features Section */
.features {
  padding: 50px 20px;
  background-color: #ffffff;
  color: #333333;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-item {
  flex: 1 1 300px;
  max-width: 300px;
  padding: 20px;
  text-align: center;
  background-color: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
}

/* Terms of Service Page Styling */
main {
  max-width: 800px; /* Restricts the width for better readability */
  margin: 0 auto;  /* Centers content horizontally */
  padding: 20px;  /* Adds space around text */
  background: #ffffff;  /* White background for readability */
  color: #333333;  /* Dark text for contrast */
  border-radius: 10px;  /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Improve header spacing */
h1, h2, h3 {
  margin-bottom: 15px;
}

/* Add spacing for paragraphs */
p {
  margin-bottom: 15px;
}

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

.footer a {
  margin: 0 10px;
}
