
  /* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #000000;
}

/* Header */
header {
    background: #0044cc;
    color: #fff;
    display: flex;
    justify-content: center; /* Center the site title */
    align-items: center;
    padding: 10px 20px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}
  
  
.logo a {
  text-decoration: none;
  color: inherit; /* Inherits the text color from the parent element */
}

.logo a:hover {
  text-decoration: none;
}


/* Main Content */
main {
    padding: 20px;
    background: #f7f7f7;
}
  
  
 /* Button styles */
    .btn-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 20px 0;
      flex-wrap: wrap; /* Make buttons stack on smaller screens */
    }
  
  /* Certificate Section Grid Layout */
.certificate-section .grid-container-3,
.certificate-section .grid-container-2 {
    display: grid;
    gap: 20px;
}

/* Large screens: Columns */
@media (min-width: 768px) {
    .btn-container {
        flex-direction: row; /* Buttons in column layout */
        align-items: center;
    }

    .certificate-section .grid-container-3 {
        grid-template-columns: repeat(3, 1fr); /* 3 columns layout */
    }

    .certificate-section .grid-container-2 {
        grid-template-columns: repeat(2, 1fr); /* 2 columns layout */
    }
}

/* Small screens: Grid */
@media (max-width: 767px) {
    .btn-container {
        flex-direction: row; /* Buttons side by side */
    }

    .certificate-section .grid-container-3,
    .certificate-section .grid-container-2 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid layout */
    }
}


    .btn {
      padding: 10px 20px;
      font-size: 16px;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
    }

    .btn-status {
      background-color: #003399;
    }

    .btn-status:hover {
      background-color: #002366;
    }

    .btn-download {
      background-color: #009933;
    }

    .btn-download:hover {
      background-color: #007a29;
    }

    /* Certificate Section Styles */
    .certificate-section {
      max-width: 900px;
      margin: 0 auto 40px auto;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .certificate-title {
      text-align: center;
      color: #fff;
      background-color: #003366;
      padding: 10px;
      border-radius: 5px;
      margin-bottom: 15px;
      font-size: 18px;
    }

    .certificate-list {
      padding-left: 20px;
    }

    .certificate-list li {
      margin-bottom: 10px;
    }

    .certificate-list li a {
      text-decoration: none;
      color: #003399;
      font-weight: bold;
    }

    .certificate-list li a:hover {
      text-decoration: underline;
    }

    /* Grid layout for bullet point section (3 columns) */
    .grid-container-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* Grid layout for other certificate sections (2 columns) */
    .grid-container-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }  
  

/* Content Section Styles */
.content-section {
    text-align: left; /* Align content to the left */
    max-width: 950px;
    margin: 0 auto; /* Center section horizontally */
}

.content-section h2 {
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 10px;
    color: #0044cc;
}

.content-section p {
    font-size: 20px;
    margin-bottom: 20px;
}

.content-section ul {
    list-style-type: disc;
    margin-left: 20px;
    text-align: left;
    font-size: 18px;
}

img {
  display: block;  /* Makes the image behave like a block element */
  margin: 0 auto;  /* Centers the image horizontally */
  height: auto;
  width: 100%;
  max-width: 680px;  /* Makes the image responsive */
  
}

/*Simple Table*/
  
.info-table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
}

.info-table th,
.info-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Make the table scrollable on smaller devices */
@media (max-width: 768px) {
    .info-table {
        width: 100%;
        font-size: 14px; /* Reduce font size for better readability */
        overflow-x: auto; /* Allow horizontal scrolling */
        display: block; /* Display table as block for better responsiveness */
    }

    .info-table th,
    .info-table td {
        padding: 10px; /* Reduce padding */
        white-space: nowrap; /* Prevent text from breaking in narrow cells */
    }
}

/* Adjust for very small screens (phones) */
@media (max-width: 480px) {
    .info-table {
        font-size: 12px; /* Further reduce font size for smaller screens */
    }

    .info-table th,
    .info-table td {
        padding: 8px; /* Reduce padding for very small screens */
    }
}


/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer .footer-content ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

footer .footer-content ul li {
    display: inline;
    margin: 0 10px;
}

footer .footer-content ul li a {
    color: #fff;
    text-decoration: none;
}
</style>