/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.topnav {
    overflow: hidden;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }

  .topnav #home:hover{
    background-color: transparent;
  }
  
  .topnav a.active {
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }
  
  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }

#about p{
    font-size: 1.4em;
    text-align: justify;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #2471A3;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 1.8rem;
    margin-left: 20px;
    float: left;
}

/* Jumbotron */
#jumbotron {
    background: url('https://images.unsplash.com/photo-1526140671827-b648ad864cb4?q=80&w=1467&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:8%;
    color: #fff;
    text-align: center;
    position: relative;
}
.faq-item p{
    text-align: left;
    padding: 10px;
}
.testimonial{
    text-align: left;
    font-size: 1.6em;
    padding: 10px;
    color:#2471A3;
}
.jumbotron-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    padding: 8%;
    border-radius: 10px;
}

.jumbotron-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.jumbotron-content p {
    font-size: 1.5rem;
    color: #acbcce;
    margin-bottom: 20px;
}

.btn {
    background-color: #AAB7B8;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #AAB7B8;
}

a{
    color: #2471A3;
    text-decoration: none;
}

a:hover{
    color: #2471A3;
}

#faq p{
    padding: 8px;
    text-align: left;
}

#testimonials p{
    padding: 7px;
    font-size: 1.2em;
    text-align: left;
}
/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2471A3;
}

section p {
    font-size: 1.1rem;
    text-align: center;
    color: #555;
}

footer {
    background-color: #2471A3;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        float: none;
        text-align: center;
    }

    .jumbotron-content h2 {
        font-size: 2rem;
    }

    .jumbotron-content p {
        font-size: 1rem;
    }
}
