    .wrapper {
      max-width: 1000px;
      margin: auto;
      padding: 40px 20px;
      text-align: center;
    }
    .profile-img {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 20px;
      border: 4px solid #00c6ff;
      box-shadow: 0 0 15px rgba(0,198,255,0.6);
      transition: transform 0.3s;
    }
    .profile-img:hover {
      transform: scale(1.05);
    }
    h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    .intro {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      text-align: right;
      margin-right: auto;
    }
    h2 {
      margin: 30px 0 20px;
      font-size: 1.8rem;
      display: inline-block;
      padding-bottom: 5px;
    }
    .skills {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 40px;
    }
    .skill {
      background: rgba(255,255,255,0.1);
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 1rem;
      transition: background 0.3s, transform 0.3s;
    }
    .skill:hover {
      background: #00c6ff;
      color: #000;
      transform: translateY(-5px);
    }
    .socials {
      margin: 20px 0;
    }
    .socials a {
      display: inline-block;
      margin: 0 10px;
      text-decoration: none;
      color: #00c6ff;
      font-weight: 600;
      transition: color 0.3s;
    }
    .socials a:hover {
      color: #fff;
    }
    .contact-btn {
      display: inline-block;
      background: #00c6ff;
      color: #000;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1rem;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s, transform 0.3s;
    }
    .contact-btn:hover {
      background: #fff;
      transform: translateY(-5px);
    }
    @media (max-width: 600px) {
      h1 {
        font-size: 2rem;
      }
      .intro {
        font-size: 1rem;
      }
      .skill {
        width: 80%;
        text-align: center;
      }
    }


.page.home section.presentation .section-title{
    margin-bottom: 0 !important;
}


ul li{
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 10px;
}

ul{
    text-align: right;
    margin: 0 auto;
    width: fit-content;
}