  :root {
            --primary-bg: linear-gradient(to bottom, #121212, #1a1a1a);
            --header-bg: #2F3336;
            --footer-bg: linear-gradient(180deg, #00BF63, #5271FF);  
            --text-color: #f0f0f0;
        }
body {
  font-family: 'Poppins', sans-serif;
   background: var(--primary-bg);
            color: var(--text-color);
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1.8;
  font-size: 18px;
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
        

        header {
            background: var(--header-bg);
            text-align: center;
            padding: 20px;
        }

        header img {
            max-width: 80%;
            height: auto;
        }

        .container {
            justify-content: center;
      max-width: 80%;
      margin: 40px auto;
      padding: 0 20px;
      text-align: center;
    }
    .benefits {
      margin-bottom: 40px;
      line-height: 1.8;
  font-size: 24px;
    }
    .benefits h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color: red;
    }
    .benefits ul {
      list-style: none;
      padding: 0;
      font-size: 20px;
    }
    .benefits ul li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 24px;
    }
    .benefits ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: red;
    }
    .cta {
      margin-top: 30px;
    }
    .cta a {
      background: red;
      color: #fff;
      padding: 15px 30px;
      font-size: 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(255,0,0,0.3);
    }
    .cta a:hover {
      background: #cc0000;
    }
        .info {
            display: block;
            flex-wrap: wrap;
            max-width: 800px; /* Adjusted for better centering */
            margin: auto;
            padding: 20px;
            justify-content: center;
            
          
        }

        
         .form-group {
            margin-bottom: 15px;
            text-align: left;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        button {
            background: #28a745;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
        }
        button:hover {
            background: #218838;
        }
        .message {
            margin-top: 10px;
            padding: 10px;
            border-radius: 5px;
            font-size: 14px;
        }
        .error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        .success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        footer {
            background: var(--footer-bg);
            color: white;
            text-align: center;
            padding: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
            }
            .left, .center, .right {
                width: 100%;
                max-width: 600px;
            }
        }
        /* Basic table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

/* Table headers */
th {
    background: linear-gradient(to bottom, #ff3131, #004aad);
    color: white;
    padding: 12px;
}

/* Table rows */
td {
    padding: 10px;
    border-bottom: 1px solid gold;
}


/* Make table scrollable on small screens */
.table-container {
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 768px) {
    /* Stack table rows for better mobile display */
    table {
        border: 0;
    }
    
    thead {
        display: none;
    }

    tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        
    }

    td {
        display: block;
        text-align: right;
        padding: 10px;
        position: relative;
        border-bottom: 1px solid #ddd;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
    }
}

        nav {
            height: 30px;
           background: linear-gradient(180deg, #00BF63, #5271FF); 
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .menu {
            list-style: none;
            display: flex;
            padding: 0;
            margin: 0;
        }

        .menu li {
            position: relative;
        }

        .menu li a {
            display: block;
            padding: 20px 25px;
            color: white;
            text-decoration: none;
            font-size: 22px;
        }

        .menu li:hover > .dropdown {
            display: block;
        }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%; /* Ensures it appears just below the parent */
            left: 0;
            background: #357ae8;
            list-style: none;
            padding: 0;
            min-width: 150px;
        }

        .dropdown li a {
            padding: 10px 20px;
            display: block;
            color: white;
        }

        .dropdown li a:hover {
            background: #2556a1;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 25px;
        }

        .hamburger div {
            width: 30px;
            height: 4px;
            background: white;
            margin: 5px 0;
        }

        @media (max-width: 768px) {
            .menu {
                display: none;
                flex-direction: column;
                background: #357ae8;
                position: absolute;
                top: 80px;
                width: 100%;
                left: 0;
            }

            .menu li {
                text-align: center;
            }

            .menu.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }
        }
        
         
.ad-section {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  text-align:center;
}

#ad img {
  max-width: 100%;
  height: auto;
}

#ad a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

#ad a:hover {
  text-decoration: underline;
}
.dashboard-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  padding: 20px;
}

.member-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  margin-bottom: 20px;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #3498db;
  margin-bottom: 10px;
}

.member-card h2 {
  font-size: 22px;
  margin: 10px 0;
  color: #2c3e50;
}

.member-card p {
  font-size: 16px;
  color: #7f8c8d;
}

/* How-To Guide */
.how-to-guide {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 65%;
  text-align: left;
}

.how-to-guide h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
}

.how-to-guide .step {
  margin: 15px 0;
}

.how-to-guide h4 {
  font-size: 18px;
  color: #3498db;
}
.how-to-guide h2 {
  font-size: 24px;
  color: #3498db;
}

.how-to-guide p {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.5;
}

.how-to-guide ul {
  padding-left: 20px;
  color: #7f8c8d;
}
.sign_button{width:50%;
  display: inline-block; padding: 15px 30px; font-size: 1.6em; font-weight: bold; color: white; background: linear-gradient(180deg, #00BF63, #5271FF);  border-radius: 8px; text-decoration: none; box-shadow: 2px 2px 8px rgba(0,0,0,0.2); transition: 0.3s;
}