* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('../Images/bg2.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    flex-direction: column;
  }

  header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem 1rem;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  header h1 {
    font-size: 3rem;
    color: #ffcc00;
    letter-spacing: 2px;
  }

  main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  p{
    text-align: justify;
  }

  .content-box {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1.2s ease;
  }

  .content-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffcc00;
    border-left: 4px solid #ffcc00;
    padding-left: 1rem;
  }

  .content-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
  }

  .btn-contact {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #0d0d0d;
    background-color: #ffcc00;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-contact:hover {
    background-color: #e6b800;
    transform: scale(1.05);
  }
  

  footer {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    color: #ccc;
    backdrop-filter: blur(5px);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 600px) {
    .content-box h2 {
      font-size: 1.5rem;
    }

    .content-box p {
      font-size: 1.1rem;
    }

    header h1 {
      font-size: 2.2rem;
    }
  }