body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f9fafb;
    color: #222;
}



main {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: white;
    margin-top: 5rem;
}

main h1,
main h2,
main h3 {
    color: #0f172a;
    margin-top: 20px;
}

main h1 {
    font-size: 32px;
    line-height: 1.3;
}

main h2 {
    margin-top: 30px;
    border-left: 4px solid #3b82f6;
    padding-left: 10px;
}

main ul {
    margin-left: 20px;
}

.highlight {
    background: #eef2ff;
    padding: 10px;
    border-left: 4px solid #6366f1;
    margin: 15px 0;
}

.tip {
    background: #ecfdf5;
    padding: 10px;
    border-left: 4px solid #10b981;
    margin: 15px 0;
}

.warning {
    background: #fff7ed;
    padding: 10px;
    border-left: 4px solid #f97316;
    margin: 15px 0;
}

.highlight,
.tip,
.warning {
    border-radius: 8px;
}

.hero-card {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    padding: 28px;
    border-radius: 14px;
    margin: 25px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-3px);
}

.hero-content h2 {
    margin: 0 0 10px;
    font-size: 24px;
    border: none;
    color: white;
}

.hero-content p {
    font-size: 15px;
    opacity: 0.9;
}

.hero-content ul {
    margin: 15px 0;
    padding-left: 18px;
}

.hero-content li {
    margin-bottom: 6px;
}



.hero-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 18px;
    background: #22c55e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s ease;
}

.hero-btn:hover {
    background: #16a34a;
}


/* 


*/


header {
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
}

header nav {
    overflow: hidden;
}


.table-container {
  margin: 20px 0;
  overflow-x: auto; /* mobile scroll */
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-radius: 10px;
  overflow: hidden;
}

/* Header */
.custom-table thead {
  background: #2563eb;
  color: white;
}

.custom-table th {
  text-align: left;
  padding: 12px;
  font-weight: 600;
}

/* Body */
.custom-table td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
}

/* Alternate rows */
.custom-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

/* Hover effect */
.custom-table tbody tr:hover {
  background: #eef2ff;
  transition: 0.2s;
}


@media (max-width: 1020px) {
    nav .menuSection ul {
        position: fixed;
        top: 54px;
        right: -360px;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 4px;
        min-width: 260px;
        transition: all 0.5s ease;
        /* display: none; */
        opacity: 0;
        z-index: 100;
        gap: 15px;
        box-shadow: -6px 8px 18px 5px #00000080;
    }
}

/* 🔥 Add this */
@media (max-width: 768px) {
  main {
    padding: 15px;
  }
}


/* 🔥 Mobile */
@media (max-width: 768px) {
  .hero-card {
    padding: 18px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* 🔥 Mobile */
@media (max-width: 768px) {
  main h1 {
    font-size: 22px;
  }

  main h2 {
    font-size: 18px;
  }

  main h3 {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .highlight, .tip, .warning {
    padding: 10px;
    font-size: 14px;
  }
}