@charset "UTF-8";

.ads-header-min-height {
  min-height: 250px;
}

@media screen and (max-width: 768px) {
  .ads-header-min-height {
    min-height: 250px;
  }
}
/* Reset some defaults */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Global body */
body {
  background-color: #ffffff;
  color: #222;
  line-height: 2.1;
  font-size: 20px;
  padding: 0;
  margin: 0;
  justify-content: center; 
  align-items: flex-start; 
  min-height: 100vh; 
  flex-direction: column;  
}

/* Header */
header.header {
  background-color: #009688;
  color: white;
  padding: 20px 0;
  width: 100%; /* Full background */
}

.header .header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

header.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #FFEB3B;
}

header.header .logo img {
  width: 40px;
  height: 40px;
}

header.header .logo span {
  line-height: 1;
}

header.header nav {
  display: flex; 
}

header.header nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 18px;
}

header.header nav a:hover {
  text-decoration: underline;
}

/* Main container for content */
main {
  max-width: 1000px; /* Limit content width */
  width: 100%; /* Ensure it scales responsively */
  padding: 20px;
  margin-top: 30px;
  margin-left: auto; /* Center horizontally */
  margin-right: auto; /* Center horizontally */
  background: white;
  border-top: 2px solid #2e3192;
  border-bottom: 2px solid #2e3192;
  margin-bottom: 40px;
  box-sizing: border-box;
}

h1 {
  font-size: 33px;
  margin-bottom: 20px;
  color: #009688;
}

p, li, br {
  margin-bottom: 12px;
}

p {
  font-size: 20px;
  color: #333;
}

/* Lists */
ul {
  padding-left: 24px;
}

ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Footer */
footer {
  text-align: center;
  color: #666;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #071d41;
  border-top: 1px solid #ddd;
}

footer p {
  font-size: 14px;
  color: white;
}

.hero-section {
  text-align: center;
  padding: 20px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1394 / 815; 
  border-radius: 12px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

/* Responsive Design */
@media (max-width: 768px) {
  header.header {
    flex-direction: column;
    align-items: flex-start;
  }

  header.header nav {
    margin-top: 10px;
  }

  main {
    padding: 15px;
    margin-top: 20px;
  }
}
