body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    /* overflow: hidden; */
    overflow-y: auto;
  }
  
  .container {
    width: 100vw;
    height: 100vh;
    position: relative;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .logo {
    font-size: 24px;
    margin: 0;
  }
  
  .menu-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  
  .main-text {
    font-size: 36px;
    margin: 20px;
    color: #cccccc;
  }
  
  .highlight-text {
    font-size: 48px;
    margin: 20px;
    font-weight: bold;
  }
  
  .discover-link {
    display: inline-block;
    margin: 20px;
    color: white;
    text-decoration: none;
  }
  
  .green-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .arrow-down {
    font-size: 24px;
    margin: 20px;
    cursor: pointer;
  }
  
  .globe {
    width: 330px;
    height: 400px;
    background: url('globe.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .content-box {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 10px;
    left: 35px;
  }
  
  .road-img {
    /* width: 200px; */
    height: 150px;
    object-fit: cover;
    margin-right: 10px;
  }
  
  .value-card {
    background-color: green;
    padding: 10px;
    color: black;
    width: 150px;
    height: 130px;
  }
  
  .black-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    margin-right: 5px;
  }
  
  .value {
    font-size: 24px;
    font-weight: bold;
    margin-top: 5px;
  }
  
  .bottom-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .bottom-logo svg {
    width: 100%;
    height: 100%;
  }






  .ccc {
    margin-top:400px;
    text-align: center;
    max-width: 600px;
    padding: 20px;
  }
  
  .title {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 30px;
  }
  
  .image-ccc {
    margin-bottom: 30px;
  }
  
  .image-ccc img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .btn {
    width: 300px;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 35px;
  }
  
  .btn:hover {
    background-color: #eee;
  }