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

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f1f1f1; /* Light grey background */
  line-height: 1.6;
}

/* Section Styling */
#home {
  position: relative;
  min-height: 100vh;
  background: #f1f1f1; /* Same light grey background */
  color: #ffffff;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 36, 87, 0.5);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

/* Headings */
h1 {
  font-size: 5rem; /* Increased font size */
  margin-bottom: 1.5rem;
  font-weight: bold;
}

h2 {
  font-size: 3rem; /* Increased font size */
  margin-bottom: 2rem;
  color: #333;
}

/* Links */
a {
  color: #aa0b0b;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

a:hover {
  color: #363636;
  text-decoration: none;
}

/* List Styling */
ul {
  list-style-type: disc;
  margin: 1.5rem 0;
  padding-left: 0; /* Remove left padding for centering */
  display: inline-block; /* Centering the list */
}

ul li {
  margin: 0.75rem 0;
  font-size: 2rem; /* Increased font size */
  text-align: left; /* Keep text left-aligned inside the list */
  padding-left: 1.5rem; /* Add padding to make the bullets visible */
}

/* Website List (with visible bullet points) */
ul li a {
  color: #00c4ff;
}

/* Subsection Styling */
.container2 {
  background: #fff;
  color: #333;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  text-align: left;
}

.container2 h1 {
  font-size: 4.5rem; /* Increased font size */
  color: #007bff;
  margin-bottom: 1.5rem;
  font-weight: bold; /* Bold title */
  text-align: center;
}

.container2 p {
  margin-bottom: 1.5rem;
  font-size: 2.1rem; /* Increased font size */
  line-height: 1.8;
  text-align: center;
  color: #757575;
}

/* Advantages List */
.container2 ul li {
  margin-bottom: 1.2rem; /* Increased margin */
  font-size: 1.5rem; /* Increased font size */
}

.container2 ul li strong {
  color: #252525;
  font-weight: bold; /* Bolded strong text */
}

/* Contact Section */
.contact {
  margin-top: 2.5rem;
  font-size: 1.2rem;
  text-align: center;
}

.contact a {
  color: #6610f2;
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 3.7rem; /* Increased mobile font size */
  }

  h2 {
    font-size: 3.8rem; /* Increased mobile font size */
  }

  ul li {
    font-size: 2.1rem; /* Increased mobile font size */
  }

  .container2 {
    padding: 2rem;
  }
}
