/* styles.css */

/* Reset styles for consistent rendering */
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol, li {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #131313;
  text-align: left;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

div {
  margin: 25px 50px 25px 50px;
  padding: 0px 20px 0px 20px;
}

.features {
  display: block;
}

h2 {
  font-family: "Heebo", sans-serif;
  font-weight: 200;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #131313;
  margin: 0px 0px 0px 0px;
}


header {
  background-color: #000;
  color: #fff; /* Corrected typo from #0000 to #fff for better contrast */
  padding: 10px;
}

a {
  text-decoration: none;
  color: #d6d6d6;
  transition: color 0.3s ease;
}

        /* Add the hover effect */
a:hover {
  color: #ff6b6b; /* Change this to your desired hover color */
  transition: color 0.3s ease;
}

        /* Optional: Add underline or other decoration on hover */
a:hover {
  text-decoration: underline; /* Change to 'none' if you don't want underline */
            /* Other styles can be added here, like changing background color, etc. */
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin: 0 auto; /* This will center the logo horizontally */
}

.logo img {
  width: 150px;
}

nav ul {
  list-style: none;
  background-color: #000;
  padding: 20px 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
  padding-left: 100px; Removed this to avoid excessive padding */
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  width: 100%;
        }

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f2f2f2;
        }

        /* Add some spacing and box shadow to the table */
table {
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

        /* Style the header cells */
th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  color: #444;
        }

        /* Style the data cells */
td {
  font-size: 14px;
  color: #666;
        }

        /* Hover effect for table rows */
tr:hover {
  background-color: #f5f5f5;
}

.hero {
  background-image: url('hero-background.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: block;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
}

/* CSS for larger screens */


.feature-container {
  padding: 15px;
  box-sizing: border-box;
}

/* CSS for smaller screens */
@media screen and (max-width: 767px) {
  .feature {
    padding-left: 0; /* Adjusted padding for smaller screens */
  }

  .feature-container {
    margin-bottom: 20px;
  }
}



footer {
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
        }

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f2f2f2;
        }

        /* Add some spacing and box shadow to the table */
table {
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

        /* Style the header cells */
th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  color: #444;
        }

        /* Style the data cells */
td {
  font-size: 14px;
  color: #666;
        }

        /* Hover effect for table rows */
tr:hover {
  background-color: #f5f5f5;
}