body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center; /* Center-align the text */
    margin-bottom: 20px; /* Add some margin below the header */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    text-shadow: 1px 1px 2px black; /* Add text shadow */
}

/* Hero section styles */
.hero {
    text-shadow: 0 0 5px rgb(136, 136, 136);
    position: relative;
    color: rgb(0, 0, 0);
    background-image: url('../imgs/guidelist.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: 5px;
}

.hero h1 {
    color: white;
    background-color: rgba(0, 0, 0, 0.401);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px black; /* Add text shadow */
}

.hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px black; /* Add text shadow */
}


main {
    padding: 20px;
}

/* Improved styles for the .state section */
.state {
    margin-bottom: 20px;
    background-color: #f7f7f7; /* Add a background color for differentiation */
    padding: 20px; /* Add padding for spacing */
    border-radius: 5px; /* Add rounded corners */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.state h2 {
    font-size: 1.8rem; /* Slightly increase the font size */
    color: #333; /* Change text color for better contrast */
    margin-bottom: 15px; /* Reduce spacing below heading */
}

.state ul {
    list-style-type: disc; /* Use bullet points for list items */
    padding-left: 20px; /* Add indentation for list items */
    margin-top: 10px; /* Create space above the list */
}

.state ul li {
    margin-bottom: 5px; /* Add spacing between list items */
}

.state ul li a {
    text-decoration: none;
    color: #007bff; /* Use a more professional link color */
    transition: color 0.3s ease; /* Add a smooth color transition on hover */
}

.state ul li a:hover {
    color: #0056b3; /* Change link color on hover */
}
.box {
    width: 25%; /* Set the width of each box to one-third of the container */
    float: left; /* Float the boxes to the left */
    box-sizing: border-box; /* Include padding and border in the box's total width */
    padding: 10px; /* Add some padding for spacing between boxes */
  }
  .hero {
    text-shadow: 0 0 5px rgb(136, 136, 136);
    position: relative;
    color: rgb(0, 0, 0);
    background-image: url('../imgs/guidelist.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
}


.hero-content {
    background-color: #00000031;
    position: relative;
    z-index: 2;
    
    border-radius: 5px;
}

.hero h1 {
    color: #f7f7f7;
    background-color: #00000050;
    font-size: 2.5rem;
}
.hero p{
    color: #f7f7f7;
    background-color: #00000050;;
    font-size: 1.5rem;
}
footer{
    color: black;
}
.highlighted-text {
    background-color: yellow;
    font-weight: bold;
}

/* Clear button styles */
.clear-button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.clear-button:hover {
    background-color: white;
    color: #333;
}

@media screen and (max-width: 768px) {
    .box {
        width: 50%; 
        float: none; 
    }
}