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

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #f9f9f9;
  scroll-behavior: smooth;
}

p{
  font-size: large;
}

ul {
  list-style: inside;
  color: #4A4A49;
  /* removes default dots */
  padding: 0;
  margin: 0;
}

ul li {
  position: relative;
  padding-left: 1.8em;
  /* space for the arrow */
}

/*ul li:not(.cards > li)::before {
  content: "➜";
  /* arrow symbol 
  position: absolute;
  left: 0;
  top: 50%;
  /* middle of the li element 
  transform: translateY(-50%);
  /* vertically center it 
  color: #4A4A49;
  /* your theme color 
  font-size: 1.3rem;
  font-weight: bold;
}
/*
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00ffcc;
}

.btn {
  display: inline-block;
  background: #00ffcc;
  color: #222;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #00d4ff;
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}*/

.main-content {
  position: relative;
  max-width: 65%;
  margin: -50px auto 0 auto;
  /* negative top margin to move up over hero */
  padding: 2rem;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* subtle shadow */
  border-radius: 20px;
  z-index: 2;
  /* make sure it’s above hero */
}

.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

.main-content h1,
h2 {
  color: #4A4A49
}

/* --- Sections --- */
section {
  padding: 1rem 5%;
  text-align: left;
}

section.tab-section{
  padding: 0.5em 5%;
}

.tab-title{
  text-align: left;
  margin-top: 1em;
  padding: 0 5%;
}

.about p{
  padding-top: 1rem;
}


/* ----- Tablet (≤ 1024px) ----- */
@media (max-width: 1024px) {
  .main-content {
    max-width: 85%;
    margin-top: -150px;
    padding: 1.5rem;
  }
}

/* ----- Mobile (≤ 768px) ----- */
@media (max-width: 768px) {
  .main-content {
    max-width: 95%;
    margin-top: -100px;
    padding: 1rem;
    border-radius: 12px;
  }

  p {
    font-size: 1rem;
  }
}

