/* General reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Calibri', Arial, sans-serif;
    background-color: #ffffff;
  }
  
  /* Navigation Menu */
  .navbar {
    background-color: white; /* White background */
    padding: 10px 20px;
    position: sticky; /* Sticks to the top when scrolling */
    top: 0;
    z-index: 1000;
  }
  
  .nav-list {
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-list li {
    margin-right: 20px; /* Space between menu items */
  }
  
  .nav-list a {
    color: #333; /* Dark text color */
    text-decoration: none; /* Remove underline */
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-list a:hover {
    color: #ff9800; /* Highlight color on hover */
  }
  
  /* Main content container */
  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    height: 100vh;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  /* Left section styling */
  .left-section {
    flex: 1;
    padding-right: 20px;
  }
  
  .left-section h1 {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 20px;
  }
  
  .left-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555555;
  }
  
  /* Right section styling */
  .right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .profile-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  