body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e5e5e5; /* Light gray background for body */
  }
  
  .navbar {
    background-color: #000000; /* Black navbar */
    overflow: visible; 
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative; 
    z-index: 10; 
  }
  
  .navbar .logo {
    color: #ffffff; /* White logo text */
    font-size: 24px;
    font-weight: bold;
    padding: 14px 20px;
    text-decoration: none;
  }
  
  .navbar .menu {
    display: flex;
    margin-left: auto;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropbtn {
    background-color: #000000; /* Black background for dropdown */
    color: #ffffff; /* White text */
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #14213d; /* Dark blue-gray for dropdown */
    min-width: 160px;
    z-index: 999;
    top: 100%;
    left: 0;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .dropdown-content a {
    color: #ffffff; /* White text in dropdown */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #fca311; /* Bright orange on hover */
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropbtn {
    background-color: #14213d; /* Dark blue-gray on hover */
  }
  
  .main-section {
    padding: 40px 20px;
    background-color: #ffffff; /* White background for sections */
    position: relative;
    z-index: 1;
    border: 1px solid #14213d; /* Border added to main section */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Soft shadow for professional feel */
    margin-bottom: 40px; /* Space below main section */
  }
  
  .hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #14213d; /* Dark blue-gray background */
    color: #ffffff; /* White text */
    border-radius: 10px;
    border: 1px solid #fca311; /* Light orange border around hero section */
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background-color: #fca311; /* Bright orange button */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s;
  }
  
  .cta-button:hover {
    background-color: #e64a00; /* Slightly darker orange on hover */
  }
  
  .features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }
  
  .feature-box {
    background-color: white;
    padding: 20px;
    flex: 1 1 30%;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #e5e5e5; /* Light gray border around feature boxes */
  }
  
  .feature-box h2 {
    margin-bottom: 10px;
  }
  
  .job-listings {
    padding: 40px;
    background-color: #ffffff; /* White background for job listings */
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 1px solid #14213d; /* Border around job listings */
  }
  
  .job-listings h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .job-list {
    list-style: none;
    padding-left: 0;
  }
  
  .job-list li {
    background-color: #f2f2f2; /* Light gray background for list items */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #e5e5e5; /* Light gray border around job items */
  }
  
  /* About Us Section */
  .about-us {
    padding: 60px 20px;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Soft shadow */
    margin: 60px auto;
    max-width: 900px;
    border: 1px solid #14213d; /* Dark blue-gray border */
  }
  
  .about-us h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fca311; /* Bright orange for heading */
  }
  
  .about-us p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
    padding: 0 10px;
  }
  
  
  /* Flex container */
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 60px auto;
    max-width: 1200px;
  }
  
  /* Summary Section */
  .summary-section {
    background-color: #ffffff;
    color: #000000;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    flex: 1 1 45%;
    max-width: 550px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #14213d;
  }
  
  .summary-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fca311;
  }
  
  .summary-section p {
    font-size: 18px;
    line-height: 1.8;
    padding: 0 10px;
  }
  
  /* Problem Section */
  .problem-section {
    background-color: #ffffff;
    color: #000000;
    padding: 40px 20px;
    text-align: left;
    border-radius: 10px;
    flex: 1 1 45%;
    max-width: 550px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #14213d;
  }
  
  .problem-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fca311;
    text-align: center;
  }
  
  .problem-section ul {
    list-style: disc inside;
    font-size: 18px;
    line-height: 1.8;
    padding: 0 10px;
  }
  
  .problem-section li {
    margin-bottom: 10px;
  }
  