.logo {

    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 35mm; 
    display: flex;
    align-items: center;
  text-decoration: none;  
  text-align: center;
    justify-content: center;
    font-family: "Bowlby One", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  

  body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(to bottom right, #D66D75, #FFA0DC);
    color: #111;
  }

/* Header */
.about-header {

  text-align: center;
  margin-top: 130px;

  padding: 20px 5px;
}

.about-header h1 {
  margin-bottom: 10px;
  font-size: 28px;
}

.about-header p {
  font-size: 14px;
  opacity: 0.8;
}


  /* Container */
  .about-container {
    max-width: 900px;
    margin: 5px auto;
    padding: 0 20px;
  }
  
  /* Sections */
  .about-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .about-section h2 {
    color: #c0397a;
    margin-bottom: 15px;
  }
  
  .about-section h3 {
    margin-top: 20px;
    font-size: 16px;
  }
  
  .about-section p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
  }
  
  /* Footer */
  .about-footer {
    text-align: center;
    font-size: 12px;
    padding: 20px;
    opacity: 0.8;
  }

  /* LIST */
.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink-main);
  font-weight: bold;
}
