* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
  }
  html {
    scroll-behavior: smooth;
  }
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .logo img {
    height: 50px;
    width: auto;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 60px;
  }
  
  nav ul li {
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
    padding-top: 1rem;
    padding-left: 2rem;
  }
  
  nav ul li:hover {
    color: #13572A;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    color: #13572A;
  }
  /* Hero Section Styles */
.top-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    margin-top: 7rem;
  }
  
  .top-section img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .text {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 20px;
    color: #333; /* readable text */
    font-size: 24px;
    line-height: 1.8;
    border-radius: 8px;
  }
  
  .text p {
    margin: 0;
    white-space: pre-line; /* This preserves line breaks (including special ones like the one in your text) */
  }
  
  footer {
    background-color: #373D39;
    color: #fff;
    padding: 50px 30px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .rowf,
  .row2f {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .colf,
  .colf2 {
    flex: 1 1 200px;
  }
  
  .colf-heading h3,
  .colf h3,
  .colf2-heading h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .colf-text ul,
  .colf2-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .colf-text ul li,
  .colf2-text ul li {
    margin-bottom: 8px;
  }
  
  .colf-text ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .colf-text ul li a:hover {
    color: #ccc;
  }
  
  .colf2-text p {
    margin: 0;
    line-height: 1.6;
  }
  
  .colf2-text ul li {
    font-size: 14px;
  }
  
  hr {
    border: 0;
    height: 1px;
    background-color: #fff;
    opacity: 0.2;
    margin: 30px 0;
  }
  .sociallink a{
    color: #ffffff;
  }
  /* Responsive */
  @media (max-width: 768px) {
    .rowf,
    .row2f {
      flex-direction: column;
      gap: 40px;
    }
  
    footer {
      text-align: center;
    }
  }
