body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #3e2c23;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
  }
  
  h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffddaa;
  }
  
  .contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    max-width: 400px;
    width: 90%;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1em;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
  }
  
  .reveal-btn {
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    background: linear-gradient(90deg, #6f4e37, #d2691e);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
  }
  
  .reveal-btn:hover {
    opacity: 0.85;
  }
  
  .hidden-text {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-width: 400px;
  }
  
  .next-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #6f4e37, #d2691e);
    color: white;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
  }
  .next-btn:hover {
    opacity: 0.85;
  }
  
.navbar {
    width: 100%;
    box-shadow: none;
    border-radius: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3b2a22;
    padding: 1rem 2rem;
    background-color: rgba(59, 42, 34, 0.9);
    backdrop-filter: blur(5px);
    border-bottom: 3px solid #f4c06b;
  
  }
  
  .logo {
    font-size: 1.5rem;
    color: #f4c06b;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #f5f5f5;
  }
  
  .nav-links a:hover,
  .nav-links .active {
    color: #f4c06b;
  }
  .social-footer {
    width: 100%;
    box-shadow: none;
    border-radius: none;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #cbb89d;
    background-color: rgba(59, 42, 34, 0.9);
    border-top: 1px solid #f4c06b;
  }
  
  .social-icons a {
    color: #f4c06b;
    text-decoration: none;
    margin: 0 8px;
  }
  
  .social-icons a:hover {
    text-decoration: underline;
  }
  
  