﻿    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #11493f;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }

    .profile {
      text-align: center;
      margin-top: 30px;
    }

    .profile img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background-color: #ccc;
      object-fit: cover;
    }

    .profile h1 {
      font-size: 20px;
      margin: 10px 0 5px;
    }

    .profile p {
      font-size: 14px;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .link-btn {
      width: 100%;
      max-width: 400px;
      background-color: #1f5f51;
      border: 2px solid #ffffff66;
      border-radius: 10px;
      padding: 12px 20px;
      margin: 10px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      transition: background-color 0.2s ease;
    }

    .link-btn:hover {
      background-color: #2a7664;
    }

    .link-btn img {
      width: 20px;
      height: 20px;
      margin-right: 5px;
    }

.logo {
     float: left;
     width: 10px;
     height: 50px;
     margin: 0px 0px;
}

    .link-btns {
      width: 100%;
      max-width: 400px;
      background-color: #1f5f51;
      border: 2px solid #ffffff66;
      border-radius: 10px;
      padding: 12px 20px;
      margin: 10px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      transition: background-color 0.2s ease;
    }

    .link-btns:hover {
      background-color: #2a7664;
    }

    .link-btns img {
      width: 20px;
      height: 20px;
      margin-right: 5px;
    }

    .footer {
      margin-top: 40px;
      font-size: 12px;
      color: #fff;
      font-weight: bold;
    }

    @media (max-width: 480px) {
      .link-btn {
        font-size: 14px;
        padding: 10px;
      }
    }

