:root {
    --primary: #e63946;
    --dark: #1d1d1d;
    --light: #f9f9f9;
    --accent: #00bcd4;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--light);
    color: var(--dark);
    scroll-behavior: smooth;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    
  }
  
  .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .logo i {
    color: var(--accent);
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    color: var(--accent);
  }
  .menu-toggle {
    display: none;
    background: none;
    color: white;
    font-size: 2rem;
    border: none;
  }
  main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    border-radius: 50%;
    animation: float 2s ease-in-out infinite;
  }
  
  .whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  h2 {
    font-size: 2em;
    color: #00aaff;
    margin-bottom: 20px;
  }

  .motivation-section img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
  }
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
  }
  button {
    padding: 12px;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
  }
  button:hover {
    background-color: #0077cc;
  }
 
  
  

  footer {
    text-align: center;
    background: var(--dark);
    color: white;
    padding: 1rem;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      background: var(--dark);
      width: 100%;
      margin-top: 1rem;
      padding: 1rem;
    }
  
    nav ul.show {
      display: flex;
    }
  }
