
    /* General styles */
    body {
      font-family: Arial, Helvetica, sans-serif;
      margin: 0;
      padding: 0;
      overflow: hidden; /* Hide overflow to prevent scrolling */
      position: relative; /* Ensure relative positioning */
      background-image: url('../images/p.jpg'); /* Background image for the whole page */
      background-size: cover;
      height: 100vh;
      width: 100vw;
    }

    /* Navigation bar styles */
    .nav {
      position: fixed; /* Fixed position at the top */
      top: 0;
      left: 0;
      width: 100%; /* Full width */
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px; /* Add some space around the navigation bar */
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
      backdrop-filter: blur(10px); /* Apply blur effect */
      z-index: 1000; /* Ensure it's above other content */
    }

    .nav .logo {
      display: inline-block;
      margin-right: 20px;
      border: 1px solid #fff; /* White border */
      border-radius: 50%;
      padding: 5px;
      width: 40px;
      height: 40px;
    }

    .nav .logo img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
    }

    .nav a {
      text-decoration: none;
      color: #fff; /* White text */
      font-weight: bold;
      margin: 0 10px; /* Add some space between the navigation links */
      padding: 0 10px; /* Add 10px padding to the left and right sides of the link text */
    }

    .nav a:hover {
      color: #007bff; /* Hover color */
    }

    /* Container styles */
    .container {
      position: relative;
      z-index: 1; /* Ensure it's above the background */
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh; /* Set height to viewport height */
      padding: 50px; /* Add padding to the container */
      box-sizing: border-box; /* Include padding in height calculation */
    }

    /* Content styles */
    .content {
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      max-width: 600px; /* Limit maximum width for content */
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
      color: #fff; /* White text color */
    }

    /* Paragraph styles */
    p {
      margin: 0; /* Remove default margin */
      font-weight: bold;
      text-align: justify; /* Justify the text */
      line-height: 1.6; /* Improve readability */
    }

    p img {
      vertical-align: middle; /* Align images with text */
      margin-right: 10px; /* Space between icon and text */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .content {
        padding: 20px; /* Reduce padding on smaller screens */
      }

      p {
        padding: 10px; /* Adjust padding on smaller screens */
      }
    }
