/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav {
    position: fixed;
    z-index: 9999;
    width: 100%;
    margin-bottom: 100%;
    top: 0;
}
body{
    font-family:Arial, Helvetica, sans-serif;
    background-color: #201c1b;
}

.a {
    display: flex;
    height: 70px;
    background-color: #201c1b;
    color: #09aba0;
    padding: 10px;
    width: auto;
}

.c {
    padding-top: 15px;
    align-items: center;
    margin-left: 29%;
    color: #09aba0;
    font-size: 23px;
}

.d {
    display: flex;
    background-color: #09aba0;
    width: auto;
    justify-content: center;
    padding: 5px;
    gap: 30px;
}

.d ul li a {
    color: #201c1b;
    text-decoration: none;
}

ul {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.d ul {
    gap: 30px;
}
.d ul a:hover{
    color: white;
    transform: scale(1.1);
  }
  header {
    background: #201c1b;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 95px;
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  
  header p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
  }
  
  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem auto;
    max-width: 1200px;
    gap: 1.5rem;
  }
  
  .service {
    background: #09aba0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 1.5rem;
    flex: 1 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
  }
  
  .service h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
  }
  
  .service p {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
  }
  
.copy{
  margin-top: 150px;
  margin-bottom: 20px;
}
.aaaa{
    font-size: 30px;
}
.br{
  display: none;
}
@media (max-width:500px){
    .a{
        width:500px;
        height:60px;
        
    }
    .b{
        height:40px;
        
    }
    .aaaa{
        font-size: 20px;
    }
    .c{
        font-size: 15px;
        margin-left: 20px;
        margin-right: 0px;
        margin-bottom: 20px;
        flex-grow: inherit;
    }
    .d ul a{
        font-size:14px;
        }
        .services {
          flex-direction: column;
          align-items: center;
        }
      
        .service {
          flex: 1 1 100%;
          max-width: 90%;
        }
      
        header h1 {
          font-size: 2rem;
        }
      
        header p {
          font-size: 1rem;
        }
        .br{
          display: block;
        }
        .copy{
          margin-top: 20px;
        }
      }