* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

section {
    width: 100%;  /* Add this line */
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    margin-top: 40px;
    overflow: hidden;
  }

section#home {  /* Target the section with ID "home" */
    margin-top: -50px;  /* Remove margin-top for the hero section */
    padding: 160px 20px 100px; /* Adjusted padding */
    height: auto; /* Allow height to adjust based on content */
    background-color: #f4f4f4;
    width: 100%;
  }
