body {
    font-family: arial, sans-serif;
    margin: 0;
    padding: 0;
}
header img {
    width: 100%;
    height: auto;
}

/* definition h1, h2, h3 */
h1 {
  font-size: 18px;
  font-weight: normal;
  color: #36454f;
  text-align: left;
  font-family: 'Arial', sans-serif;
  margin-top: 5px;
  margin-bottom: 5px;
}

h2 {
  font-size: 18px;
  font-weight: normal;
  color: #36454f;
  text-align: left;
  font-family: 'Arial', sans-serif;
  margin-top: 5px;
  margin-bottom: 5px;
}

h3 {
  font-size: 18px;
  font-weight: normal;  
  color: #36454f;
  text-align: left;
  font-family: 'Arial', sans-serif;
  margin-top: 5px;
  margin-bottom: 5px;
}



<!-- rest of definitions -->
.section-label {
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
}
.orange-word {
  color: #fe2c06; 
}
.blue-word {
  color: #014c88; 
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.midblue {
    background-color: #014c88;
    color: white;
    padding: 20px;
}
.orange {
    background-color: #fe2c06;
    color: white;
    padding: 20px;
}
.noborder td {
    border: none;
}
.link-section {
    text-align: center;
    margin: 30px 0;
}
.link-section a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}
footer {
    background-color: #9EA3A8;
    color: white;
    text-align: center;
    padding: 10px;
}


<!-- defintion of table cells
.table-cell-blueorange {
  background-color: #014c88;   /* Deep blue background */
  color: #ffffff;              /* White text */
  padding: 10px;               /* Inner spacing */
  border: 5px solid #fe2c06;   /* Bold orange border */
}


.table-cell-blue {
  background-color: #014c88;   /* Deep blue background */
  color: #ffffff;              /* White text */
  padding: 10px;               /* Inner spacing */
  border: 5px solid: #014c88;  /* Bold blue border */
}


<!-- definition of the buttons -->
/* Reset default margin and padding */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

/* Container for the dropdown */
.dropdown-container {
    position: relative;
}

/* Main button styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.main-btn {
    background-color: #014C88;
    color: #ffffff;
    border: 3px solid #fe2c06;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

/* Dropdown container */
.dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    min-width: 200px;
    box-shadow: none;
    z-index: 1;
}

/* Sub-buttons styling */
.dropdown-content a {
    display: block;
    background-color: #ffffff;
    color: #014C88;
    border: 3px solid #fe2c06;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.3s;
    margin: 2px 0;
    text-align: center;
}

/* Hover effect for sub-buttons */
.dropdown-content a:hover {
    background-color: #014C88;
    color: #ffffff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

<!---->

body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

img {
  max-width: 100%;
  height: auto;
}

<!-- Cookies -->
<style>
  #cookieNotice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #014C88;
    border: 3px solid #ccc;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-family: sans-serif;
    z-index: 1000;
  }
  #cookieNotice button {
    float: right;
    background-color: #014c88;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
  }

<!-- icon -->
.icon-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 1.0s ease;
}

.icon:hover {
  transform: scale(1.1);
}

<!-- bullet list in star -->
        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #014C88;
            padding: 40px;
        }

        h2b {
            color: #333;
        }

        ul.fancy-list {
            list-style: none;
            padding-left: 0;
        }

        ul.fancy-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            color: white;
            font-size: 18px;
        }

        ul.fancy-list li::before {
            content: "★";
            position: absolute;
            left: 0;
            top: 0;
            color: #fe2c06;
            font-size: 20px;
        }


<!-- vcard, qr code generation -->
    .vcard {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      padding: 30px;
      max-width: 400px;
      width: 100%;
      text-align: center;
    }
    .vcard img.profile {
      width: 100px;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .vcard img.logo {
      width: 120px;
      margin-bottom: 10px;
    }
    .vcard h2v {
      margin: 0;
      font-size: 24px;
      color: #333;
    }
    .vcard p {
      margin: 5px 0;
      color: #666;
      font-size: 15px;
    }
    .social-links a {
      margin: 0 8px;
      text-decoration: none;
      color: #0077b5;
      font-size: 18px;
    }
    .download-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: #0077b5;
      color: #fff;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
    }
    .download-btn:hover {
      background: #005f8d;
    }
    .qr-code {
      margin-top: 20px;
    }
    .qr-code img {
      width: 150px;
      height: 150px;
    }
    @media (max-width: 480px) {
      .vcard {
        padding: 20px;
      }
      .vcard h2 {
        font-size: 20px;
      }
      .vcard p {
        font-size: 14px;
      }
    }

.qr-frame {
  display: inline-block;
  padding: 16px;
  border: 3px solid orange
  border-radius: 12px;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.qr-caption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: orange;
}

</style>
