* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
  }
  
  .containerNavCont {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    /* padding: 40px 20px; */
    backdrop-filter: blur(10px);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
  }


  .containerNav {
    padding: 10px 20px;
  }
  
  header {
    background: rgba(44, 44, 44, 0.6);
    backdrop-filter: blur(12px);
    color: #f5f5f5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  header .logo {
    font-size: 28px;
    font-weight: 600;
    float: left;
  }
  
  nav {
    float: right;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  
  nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  header::after {
    content: "";
    display: table;
    clear: both;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
    border-bottom: 2px solid #d1cfcf;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .section p {
    font-size: 18px;
    margin-bottom: 15px;
    max-width: 900px;
  }
  
  .section.light {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    margin: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .hero {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    color: #2c2c2c;
    padding: 80px 0;
    margin-top: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 20px;
    color: #555;
  }
  
  .service-list {
    list-style: none;
    padding-left: 0;
  }
  
  .service-list li {
    font-size: 18px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, background 0.3s ease;
  }
  
  .service-list li:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.7);
  }
  
  footer {
    background: rgba(44, 44, 44, 0.8);
    backdrop-filter: blur(10px);
    color: #f5f5f5;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav {
      float: none;
      text-align: center;
      margin-top: 20px;
    }
  
    nav ul {
      flex-direction: column;
      gap: 15px;
    }
  
    header .logo {
      float: none;
      text-align: center;
    }
  
    .hero h2 {
      font-size: 30px;
    }
  
    .section h2 {
      font-size: 28px;
    }
  }
  