@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --dark-main: #130F24;
  /*141124*/
  --light-main: #f0eff5;
  --white: #ffffff;
  --accent: #FFC206;
  /*63D7F3;*/
  /*ffc82c;*/

  --text-dark: #2d2a3f;
  --text-light: #f8f8fb;
  --nav-bg: #130F24;
  --nav-height: 60px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-size: 0.95rem;
  /* Overall font size decreased */
  color: var(--text-dark);
  background-color: var(--dark-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: inherit;
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style-position: inside;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-dark);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #ffd659;
}

main {
  flex-grow: 1;
  padding-top: var(--nav-height);
  background-color: var(--white);
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
}

.section-light {
  background-color: var(--white);
  color: var(--text-dark);
}

.section-muted {
  background-color: var(--light-main);
  color: var(--text-dark);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 50px;
  background-color: var(--accent);
  border-radius: 2px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--nav-bg);
  color: var(--text-light);
  display: flex;
  justify-content: center;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-light);
}

.footer-bar {
  background-color: var(--dark-main);
  color: var(--text-light);
  height: var(--nav-height);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

.footer-content {
  width: 90%;
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-content a {
  color: var(--accent);
  font-weight: 500;
}

.footer-content a:hover {
  text-decoration: underline;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.styled-list {
  list-style: none;
}

.styled-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}

.styled-list li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.date-list {
  list-style: none;
}

.date-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 0;
}

.date-list li strong {
  color: var(--dark-main);
}

.highlight-text {
  color: var(--accent);
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--dark-main);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: left 0.4s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .two-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-bar {
    height: auto;
    padding: 1rem 0;
  }
}