/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  header {
    background: #a2b499; /* dark blue inspired by Dock Street Ventures */
    color: #fff;
    padding: 20px 0;
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    height: 50px; /* Recommended logo height; adjust as needed */
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    text-decoration: underline;
  }
  
  /* Hamburger Menu (visible on mobile) */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 5px;
  }
  
  /* Hero Section */
  .hero {
    background: url('../images/hero-background.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 20px;
  }
  
  /* Criteria Section */
  .criteria {
    padding: 50px 0;
    background: #f4f4f4;
  }
  
  .criteria h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .criteria ul {
    list-style: none;
  }
  
  .criteria ul li {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  /* About Section */
  .about {
    padding: 50px 0;
  }

  .team-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .card {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
    flex: 1 1 calc(50% - 20px);
    margin-bottom: 20px;
  }
  .card img {
    width: 100%;
    height: auto;
  }
  .card-content {
    padding: 15px;
  }
  @media (max-width: 768px) {
    .card {
      flex: 1 1 100%;
    }
  }
  .team h2 {
    margin-top: 40px;
  }

  .about-intro h1 {
    margin-top: 30px;
  }

  .team-cards .card img {
    width: 300px;
    height: auto;
    object-fit: cover; /* Ensures the image covers the dimensions without distortion */
    border-radius: 50%; /* Optional: makes the image circular if desired */
    display: block;
    margin: 0 auto;
  }

  .experience-box {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    
    margin: 20px auto;
    background: #fff;
    transition: box-shadow 0.3s ease;
  }
  
  .experience-box summary {
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* Removes default triangle in some browsers */
  }
  
  .experience-box summary::-webkit-details-marker {
    display: none;  /* Remove default marker in WebKit browsers */
  }
  
  .experience-box[open] {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .experience-list {
    margin-top: 10px;
    padding-left: 20px;
  }
  
  .experience-list li {
    margin-bottom: 8px;
  }

  
  /* Modern Contact Form Styling */
.contact form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  .contact form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .contact form input,
  .contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }
  
  .contact form button {
    display: block;
    width: auto;
    margin: 0 auto;
    padding: 10px 20px;
    background: #002b5c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .contact form button:hover {
    background: #001f45;
  }
  

  /* Footer */
  footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
  }
  
  footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  footer ul {
    list-style: none;
    display: flex;
  }
  
  footer ul li {
    margin-left: 20px;
  }
  
  footer ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  footer ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1;
    min-width: 200px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    header .container {
      flex-direction: column;
    }
    
    nav ul {
      flex-direction: column;
      display: none;
      width: 100%;
    }
    
    nav ul li {
      margin: 10px 0;
    }
    
    .hamburger {
      display: flex;
    }
    
    /* When hamburger is active */
    .show-menu {
      display: flex;
    }
  }
  