/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1, h2, h3, h4 {
    color: #222;
  }
  
  p {
    margin: 10px 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Mission Section */
  .mission {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .mission h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  /* Values Section */
  .values {
    background: #f4f4f9;
    padding: 50px 20px;
  }
  
  .values h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .value-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .value {
    flex: 1;
    max-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  
  /* Team Section */
  .team {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .team-members {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .member {
    flex: 1;
    max-width: 300px;
  }
  
  /* Testimonials Section */
  .testimonials {
    background: #2575fc;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .testimonial-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .testimonial {
    flex: 1;
    max-width: 300px;
    background: #1e63d6;
    padding: 20px;
    border-radius: 10px;
  }
  
  /* Call-to-Action Section */
  .cta {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
  }
  
  .cta .btn {
    padding: 15px 30px;
    background: #fff;
    color: #2575fc;
    border-radius: 5px;
    text-decoration: none;
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2575fc;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none;
  }
  
  .cookie-banner p {
    display: inline-block;
    margin: 0;
    font-size: 0.9rem;
  }
  
  .cookie-banner .btn {
    margin-left: 10px;
    padding: 8px 15px;
    background: #fff;
    color: #2575fc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .cookie-banner .btn:hover {
    background: #e4e4e4;
  }

  .main-header {
    background: #2575fc;
    color: #fff;
    padding: 10px 0;
  }
  
  .main-header .nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .main-header .nav-links li {
    margin: 0 15px;
  }
  
  .main-header .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .main-header .nav-links a:hover {
    text-decoration: underline;
  }