/* 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;
  }
  
  /* 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%;
  }
  
  /* 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 */
  }
  
  /* Paragraph styles */
  .title-container {
    background-color: rgba(250, 246, 246, 0.623); /* Adjust the opacity and color of the title container */
    padding: 20px; /* Add padding to the title container */
    border-radius: 5%; /* Border radius */
    width: 100%; /* Full width */
    height: auto; /* Adjusted height */
    margin: 10px auto; /* Center the container horizontally and add margin */
    display: flex;
    flex-wrap: wrap; /* Wrap items to next line */
    justify-content: space-between; /* Space between items */
  }
  
  .title-container p {
    color: #020202; /* White text */
    font-weight: bold;
    text-align: center; /* Center the text */
    margin: 20px; /* Space around each title */
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
  }
  
  .title-container p a {
    text-decoration: none;
    color: inherit; /* Inherit color */
  }
  
  /* Popup styles */
  .popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1001; /* Ensure it's above other content */
  }
  
  .popup-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px; /* Adjusted width */
    width: 90%; /* Make it responsive */
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .popup-content h2 {
    margin-top: 0;
  }
  
  .popup-content button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .popup-content button:hover {
    background: #0056b3;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .content {
      padding: 20px; /* Reduce padding on smaller screens */
    }
  
    .title-container {
      padding: 10px; /* Adjust padding on smaller screens */
      width: 90%; /* Adjust width on smaller screens */
    }
  
    .popup-content {
      padding: 10px;
      max-width: 90%;
    }
  }
  