:root {
    --primary-color: #023E8A; 
    --secondary-color: #0077B6; 
    --text-color: #333;
    --bg-color: #f0f8ff; 
  }

  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
  }

  .container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
  }

  h1 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 0.2em;
  }

  h2 {
    text-align: center;
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 1em;
  }

  .image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .content {
    background: #ffffffcc;
    padding: 20px;
    border-radius: 10px;
  }

  .section {
    margin-bottom: 20px;
  }

  .highlight {
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
  }

  footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
  }
  .btn-more-detail{
    color:dodgerblue;
  }
  .btn-more-detail:hover{
    padding:12px;
    border-radius:10px;
    background:dodgerblue;
    color:white;
    margin-top:10px;
  }
  @media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.2em; }
  }