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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header {
  background-color: #2c3e50;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

section ul li {
margin-left: 1rem;
}

h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

section:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #f4f4f4;
  color: #555;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  justify-content: center;
}

/* NAVBAR BASE */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.site-title:hover {
  color: rgba(255, 255, 255, 1);
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: relative;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav-links li a:hover:after { 
  width: 100%; 
  left: 0; 
}

.column {
  float: left;
  width: 50%;
  padding: 5px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/* ----------- RESPONSIVE STYLES ----------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #2c3e50;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    z-index: 999;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .nav-links.show {
    display: flex;
  }
}



/* ----------- RESPONSIVE STYLES ----------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #2c3e50;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    z-index: 999;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .nav-links.show {
    display: flex;
  }
}