@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300);body {  background-color: #1E3A8A; /* Dark blue background */  color: #333333; /* Dark gray text */  font-family: 'Source Sans Pro', sans-serif;  -webkit-font-smoothing: antialiased;  margin: 0px 25px 0 25px;}::selection {  background-color: #FF6347; /* Red color for selected text */}::-moz-selection {  background-color: #FF6347; /* Red color for selected text in Firefox */}a {  color: #FF6347; /* Red color for links */  text-decoration: none;  border-bottom: 2px solid rgba(255, 99, 71, 0.5);  transition: all 0.3s ease;}a:last-child {   margin-right: 0px; }a:hover {  text-shadow: 0px 0px 1px rgba(255,255,255,.5);  border-bottom: 2px solid #FF6347; /* Red underline on hover */}#noscript-warning {  width: 100%;  text-align: center;  background-color: rgba(0,0,0,0.1); /* Light gray background for the warning */  font-weight: 300;  color: #333333;  padding-top: 10px;  padding-bottom: 10px;}/* === WRAP === */#wrap {  width: 80%;  max-width: 1400px;  margin:0 auto;  height: auto;  position: relative;  margin-top: 8%;}/* === MAIN TEXT CONTENT === */#main-content {  float: right;  max-width: 45%;  color: #ffffff; /* White text */  font-weight: 300;  font-size: 18px;  padding-bottom: 40px;  line-height: 28px;}#main-content h1 {  margin: 0px;  font-weight: 400;  font-size: 42px;  margin-bottom: 40px;  line-height: normal;  color: #ffffff; /* White for headings */}/* === NAVIGATION BUTTONS === */#navigation {   margin-top: 2%; }#navigation a.navigation {  display: block;  float: left;  background-color: #ffffff; /* White background for buttons */  padding-left: 15px;  padding-right: 15px;  color: #1E3A8A; /* Dark blue text for buttons */  height: 41px;  line-height: 41px;  text-decoration: none;  font-size: 16px;  transition: all 0.3s ease;  margin-right: 2%;  margin-bottom: 2%;  border-bottom: none;  border: 2px solid #1E3A8A; /* Blue border */}#navigation a.navigation:hover {  background-color: #1E3A8A; /* Dark blue background on hover */  color: #ffffff; /* White text on hover */  border-color: #1E3A8A; /* Blue border on hover */}/* === WORDSEARCH === */#wordsearch {  width: 45%;  float: left;}#wordsearch ul {  margin: 0px;  padding: 0px;}#wordsearch ul li {  float: left;  width: 12%;  background-color: #ffffff; /* White background for list items */  list-style: none;  margin-right: 0.5%;  margin-bottom: 0.5%;  padding: 0;  display: block;  text-align: center;  color: #FF6347; /* Red text */  text-transform: uppercase;  font-size: 1.6vw;  font-weight: 300;  transition: background-color 0.3s ease;}#wordsearch ul li.selected {  background-color: #FF4500; /* Orange for selected items */  color: #ffffff; /* White text for selected items */  font-weight: 400;}/* === SEARCH FORM === */#search {   margin-top: 30px; }#search input[type='text'] {  width: 88%;  height: 41px;  padding-left: 15px;  padding-right: 15px;  box-sizing: border-box;  background-color: #ffffff; /* White background for search field */  border: 2px solid #1E3A8A; /* Blue border */  outline: none;  font-size: 16px;  font-weight: 300;  color: #333333;  font-family: 'Source Sans Pro', sans-serif;  transition: all 0.3s ease;  border-radius: 4px;}#search .input-search {  width: 10%;  float: right;  height: 41px;  background-color: #FF6347; /* Red color for search button */  outline: none;  border: none;  color: white;  font-weight: 300;  font-size: 16px;  cursor: pointer;  transition: all 0.3s ease;  text-align: center;  border-radius: 4px;}#search .input-search:hover {  background-color: #FF4500; /* Orange on hover */}/* === RESPONSIVE CSS === */@media all and (max-width: 899px) {  #wrap { width: 90%; }}@media all and (max-width: 799px) {  #wrap { width: 90%; height: auto; margin-top: 40px; top: 0%; }  #wordsearch { width: 90%; float: none; margin:0 auto; }  #wordsearch ul li { font-size: 4vw; }  #main-content { float: none; width: 90%; max-width: 90%; margin:0 auto; margin-top: 30px; text-align: justify; }  #main-content h1 { text-align: left; }  #search input[type='text'] { width: 84%; }  #search .input-search { width: 15%; }}@media all and (max-width: 499px) {  #main-content h1 { font-size: 28px; }}