/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #2c3e50;
    color: white;
    position: relative;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.3rem;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Navigation links (desktop) */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;



    /* Increased gap between nav links */
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1abc9c;
}

.nav-links.show {
    display: flex;
    /* Show when toggled */
}

/* Mobile view styles */
@media screen and (max-width: 768px) {


    .hamburger {
        display: flex;
    }

    .nav-links {

        display: none;
        /* Hide by default */
        flex-direction: column;
        /* Stack links vertically */
        background-color: #2c3e50;
        /* Optional: Add a background */
        position: absolute;
        /* Place it over content */
        top: 60px;
        /* Adjust based on navbar height */
        right: 0;
        /* Align with the edge of the screen */
        left: 0;
        /* Make it span the width */
        border-radius: 5px;
        /* Optional: Add rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        /* Optional: Add shadow */
        text-align: center;
        /* Center the text */
        padding: 20px 0;
        /* Add space around the links */
        z-index: 1000;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transform: translateY(-20px);


        /* Slide up by default */

    }


    .nav-links.show {
        max-height: 300px;
        /* Adjust based on number of links */
    }

    .navbar-container {
        justify-content: space-between;
    }
}


  .description {
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      text-align: center;
      margin: 20px auto;
      /* Adds controlled spacing */
      padding: 10px;
      line-height: 1.5;
      max-width: 80%;
      /* Keeps it neat and aligned */
  }

  /* For tablet view (screens 768px and below) */
  @media (max-width: 768px) {
      .description {
          display: flex;
          align-items: center;
          justify-content: center;
          height: auto;
          /* Removes excessive height */
          margin: 20px auto;
          /* Adds balanced spacing */
          padding: 10px;
          /* Keeps padding consistent */
      }
  }

  /* For mobile view (screens 480px and below) */
  @media (max-width: 480px) {
      .description {
          display: flex;
          align-items: center;
          justify-content: center;
          height: auto;
          /* No extra height to avoid empty space */
          margin: 15px auto;
          /* Slightly smaller margin for tighter spacing */
          padding: 15px;
          /* Ensures readability */
      }
  }

h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

th,
td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #2c3e50;
    ;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

td {
    font-size: 14px;
}

tr:hover {
    background-color: #f2f2f2;
}

.whatsapp-btn {
    display: inline-block;
    padding: 6px 10px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1da851;
}


/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}