@font-face {
    font-family:"Poppins";
    src: url('FOnts/poppins-v23-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family:"Unna";
    src: url("FOnts/unna-v23-latin-regular.woff2!") format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family:"Ballet";
    src: url("FOnts/ballet-v27-latin-regular.woff2") format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
body {
    font-family: "Poppins";
    line-height: 1.8;
    max-width: 700px;
    margin: 50px auto;
    padding: 40px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 30px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    font-size: 22px;
    margin-top: 25px;
    color: #000000;
    border-bottom: 2px solid rgba(1, 99, 138, 0.267);
    padding-bottom: 5px;
}

h4 {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}
p {
    margin: 10px 0;
    font-size: 16px;
    color: #1b1b1b;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 5px;
}

a {
    color:  rgba(1, 99, 138, 0.767);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}
.footer {
    margin-top: 50px;
    padding: 5% 8%;
    align-items: center;
    justify-content: center;
    display: flex; 
}
.back-button {
    display: inline-block;
    padding: 6px 25px;
    font-size: 18px;
    background: linear-gradient(135deg, #6aabd2, #3b6978);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

button:hover, .back-button:hover {
    background: linear-gradient(135deg, #5a98b9, #335a66);
    transform: translateY(-2px);
}