body {
            font-family: Arial, sans-serif; /* Common sans-serif font */
            line-height: 1.6;             /* Improve readability */
            margin: 0;                    /* Remove default body margin */
            padding: 0;                   /* Remove default body padding */
            background-color: #f4f4f4;    /* Light grey background */
            color: #333;                  /* Dark grey text color */
        }

        .container {
            width: 80%;                   /* Limit content width */
            margin: 20px auto;            /* Center the content with space */
            background-color: #fff;       /* White background for content area */
            padding: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow */
            border-radius: 8px;           /* Rounded corners */
        }

        header {
            background-color: #0a2342;    /* Dark blue header background */
            color: #fff;                  /* White text */
            padding: 20px 0;
            text-align: center;
            border-bottom: #e8491d 3px solid; /* Orange accent border */
            margin-bottom: 20px;
        }

        header h1 {
            margin: 0;
            font-size: 2.5em; /* Larger font size for the main title */
        }

         header p {
            font-size: 1.1em; /* Subtitle size */
         }

        main {
            padding: 20px;
            text-align: center; /* Center align text in main section */
        }

        main h2 {
            color: #0a2342; /* Dark blue for section headings */
        }

        .cta-button { /* Call to action button styling */
            display: inline-block;
            background-color: #e8491d; /* Orange button */
            color: #fff;
            padding: 10px 20px;
            text-decoration: none; /* Remove underline from link */
            border-radius: 5px;
            margin-top: 20px;
            font-weight: bold;
            transition: background-color 0.3s ease; /* Smooth hover effect */
        }

        .cta-button:hover {
            background-color: #cf401a; /* Darker orange on hover */
        }

        footer {
            text-align: center;
            margin-top: 30px;
            padding: 20px 0;
            color: #555; /* Lighter grey for footer text */
            border-top: 1px solid #ccc; /* Subtle top border */
            font-size: 0.9em;
        }

.flex-list {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next line */
  list-style: none; /* Removes default list bullets */
  padding: 0;
  margin: 0;
}

.flex-list li {
  flex-basis: calc(33.333% - 20px); /* Adjust 20px for desired gap */
  /* Or use flex: 1 0 30%; for a slightly different behavior */
  margin: 10px; /* Example gap between items */
  box-sizing: border-box; /* Ensures padding and border don't increase width */
  /* Add other styling for your list items as needed */
  background-color: #f0f0f0;
  padding: 15px;
}

/* For responsiveness, you might want items to stack on smaller screens: */
@media (max-width: 768px) {
  .flex-list li {
    flex-basis: calc(50% - 20px); /* 2 columns on medium screens */
  }
}

@media (max-width: 480px) {
  .flex-list li {
    flex-basis: 100%; /* 1 column on small screens */
    margin: 10px 0;
  }
}