* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #ffd58d, #74a9ff);
  color: #003049;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 1200px;
  padding: 2rem;
  text-align: center;
  min-height: 100vh;
}

h1, h2, h3 {
font-family: ccsignlanguage, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
  color: #001f33;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
  text-align: center;
  width: 100%;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  display: block;
  border-bottom: 4px solid #ff8400;
  padding-bottom: 8px;
  margin-bottom: 1.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #00263a;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

nav a {
  display: inline-block;
  background: linear-gradient(135deg, #ff8400, #ffb347);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

nav a:hover {
  background: linear-gradient(135deg, #ffb347, #ff8400); 
  transform: translateY(-2px);
}

img {
  display: block;
  margin: 1rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.50);
}

ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 700px;
  text-align: center;
}

ul li {
  margin: 0.75rem 0;
  padding: 0.5rem;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

ol {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem auto;
  max-width: 700px;
  text-align: center;
  counter-reset: item;
}

ol li {
  margin: 0.75rem 0;
  padding: 0.5rem;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  display: block;
  position: relative;
  padding-left: 2rem;
}

ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  position: absolute;
  left: 0.5rem;
  font-weight: bold;
  color: #000000;
}

.content-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

* {
  text-align: center;
}

.image-gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.image-gallery img {
  margin: 0;
  flex: 0 0 auto;
}

footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #001f33;
  opacity: 0.8;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
