/* ===== GLOBAL.CSS ===== */
@import url("ptt.css");
@import url("header.css");
@import url("bullets.css");

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  background-color: #fff;
  color: #2b2b2b;
  font-size: 15px;
}


/* ===== MAIN CONTENT ===== */
main {
  max-width: 1200px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

section {
  /* Added 1rem of padding to the left and right */
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
}


section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #3a4b63;
  margin-bottom: 1.5rem;
  position: relative;
}


h1 {
  /* General H1 style (for H1s outside the header) */
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #2b2b2b;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: #2b2b2b;
  margin-bottom: 1rem;
}

/* Sidebar layout */
.main-with-sidebar {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.main-content {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.main-content section {
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.main-content ul,
.main-content ol {
  text-align: left;
  display: inline-block;
  margin: 0 auto 1rem auto;
}

.em-description {
  text-align: left;
  margin: 0 auto;
  max-width: 800px;
}

.steps-list {
  margin-left: 1.2rem;
  padding-left: 1rem;
  list-style: decimal inside;
  color: #2b2b2b;
  line-height: 1.5;
}

.steps-list li {
  margin-bottom: 0.8rem;
  padding: 0.2rem 0;
  border-left: 3px solid #daa1cb;
  padding-left: 0.6rem;
  background-color: #f9f9f9;
  border-radius: 3px;
}

.event-features {
  list-style: disc inside;
  margin-left: 1rem;
  padding-left: 0;
  line-height: 1.5;
}

.event-features>li {
  margin-bottom: 1rem;
  font-weight: 600;
}

.event-features li ul {
  list-style: circle inside;
  margin-top: 0.3rem;
  margin-left: 1rem;
  font-weight: 400;
}

section img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.cropped-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.center-img {
  display: block;
  margin: 1rem auto;
  max-width: 100%;
  height: auto;
}

.slide_title {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #0F9ED5;
  font-weight: 600;
  text-align: left;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  nav {
    flex-direction: column;
    gap: 0.6rem;
  }

}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 0.8rem;
  font-size: 0.8rem;
  color: #666;
  border-top: 1px solid #e6e6e6;
  margin-top: 2rem;
}

p {
  line-height: 1.6;
  margin: 0.75rem 0;
  font-size: 1rem;
  color: #333;
}

p em {
  font-style: italic;
  color: #555;
}

p strong {
  font-weight: 600;
  color: #222;
}

a {
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px dotted #0066cc;
  transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: #004080;
  border-bottom-color: #004080;
}