body {
    font-family: 'Outfit', sans-serif;
    background-color: #f4f7f9;
    margin: 0;
    padding: 0;
    color: #333;
}

.containers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: hsl(216, 19%, 16%);
    height: 30px;
    width: 1470px;
    margin-top: 0px;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
  }
  
  .btn {
    background-color: #00c8c8;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }

.navbar-list {
    list-style-type: none;
    padding: 0;
}

.navbar-links {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.navbar-links:hover {
    color: #d1e9ff;
}

.about {
    padding: 40px;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.about h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #4a90e2;
    text-align: center;
}

.about h2 {
    font-size: 2em;
    margin-top: 30px;
    color: #333;
}

.about p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.about ul {
    list-style-type: disc;
    margin-left: 20px;
}

.about li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.success-stories {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 15px;
}

.story {
    background: #e6f7ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.story:hover {
    transform: translateY(-5px);
}

.story h3 {
    margin: 0;
    font-weight: bold;
    color: #007acc;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #4a90e2;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
