@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

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

body {
  display: flex;
  font-family: 'Open Sans', sans-serif;
  background-color: #f7f9fc;
  color: #333;
  line-height: 1.6;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

thead {
    background-color: #f8f9fa;
}

thead th {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid #ddd;
    color: #333;
    font-weight: 600;
}

tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    color: #555;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    .desc-col, .desc-data {
      display: none;
    }
  }

/* ============ Sidebar ============ */
.sidebar {
  width: 300px;
  min-height: 100vh;
  background-color: #1f2e3b;
  color: #f1f1f1;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sidebar img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d4af37;
  margin-bottom: 1.5rem;
}

.sidebar h1 {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.sidebar h2 {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #d4af37;
}

.sidebar p {
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  color: #ccc;
}

.sidebar a {
  color: #d4af37;
  text-decoration: none;
  display: block;
  margin: 0.3rem 0;
  font-size: 0.92rem;
}

.sidebar a:hover {
  /*text-decoration: underline;*/
  color: #e6c75e;
}

.social-links {
  margin-top: 1.5rem;
  text-align: center;
}

.social-links a {
  display: inline;
  margin: 0.4rem 0;
  color: #d4af37;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a i {
  margin-right: 8px;
  color: #d4af37;
  font-size: 1rem;
}

.social-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
/* ============ Main Content ============ */
.main-content {
  flex: 1;
  padding: 1.5rem;
  background: #fff;
}

.main-content h1 {
  font-size: 2rem;
  font-family: 'Merriweather', serif;
  margin-bottom: 1rem;
  color: #1f2e3b;
}

.main-content p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: justify;
  /* max-width: 800px; */
}

.main-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1f2e3b;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 0.3rem;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* ============ Contact ============ */
.main-content a {
  color: #1f2e3b;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted #d4af37;
}

.main-content a:hover {
  color: #d4af37;
  border-color: #d4af37;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    min-height: 50vh;
  }

  .main-content {
    padding: 2rem;
  }

  .sidebar img {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    margin-right: 1rem;
  }

  .sidebar h1,
  .sidebar h2 {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    margin: 0.3rem 0;
  }

  .sidebar p,
  .sidebar a {
    font-size: 1.0rem;
    display: inline;
  }
}
