{
  margin: 0;
  padding:0;
  box-sizing: border-box ;
  font-family: 'Ariel', sans-serif;
}

body {
  background-color: #2E64FE; /* Light background color for contrast */
  color: black; /* Dark text color */
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 0px;
  text-align: center;
  font-family: 'Ariel', sans-serif;
}

h2 {
  color: #2E64FE; /* Darker color for headings */
  font-weight: 600;
}

h3 {
color: white; /* Darker color for headings */
  font-weight: 600;
  font-size: 5em;
margin-top: 1px;
  margin-bottom: 1px;
  text-transform: none;
  letter-spacing: 2px;
}

h4 { 
  Color: yellow;
  Font-weight: 600;
}

h1 {
color: white; /* Darker color for headings */
  font-weight: 600;
  font-size: 7em;
  margin-top: 1px;
  margin-bottom: 1px;
  text-transform: none;
  letter-spacing: 2px;


}

p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

/* Links styled as buttons */
a {
  display: inline;
  background-color: #2E64FE;
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 10px;
}

a:hover {
  background-color: #A9BCF5;
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

a:focus {
  outline: none;
  border: 2px solid #3498db;
}

/* Container for sections */
section {
  width: 100%;
 
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

section:last-child {
  margin-bottom: 0;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

section p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #7f8c8d; /* Lighter text for paragraphs */
}

/* Flexbox Layout for aligning sections */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.container > section {
  margin-top: 20px;
}

footer {
  font-size: 1em;
  color: #7f8c8d;
  margin-top: 40px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .container > section {
    width: 45%;
  }

}

.dropdown-section {
  margin: 0;
  padding: 0;
box-shadow: none;
}

details {
  background: white;
  box-shadow: none;
  border-radius: 10px;
  padding: 0;
  margin-bottom: 10px;
  
}

summary {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2E64FE;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: " ▼";
  font-size: 0.9rem;
}

details[open] summary::after {
  content: " ▲";
}

details p {
 font-size: 1.2em;
  margin-bottom: 20px;
  color: #7f8c8d; /* Lighter text for paragraphs */
}

