/* NAVBAR */
.navbar {
    background-color: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 2rem;
}

.navbar-brand {
    color: #3B82F6 !important;
    font-weight: 600;
    font-size: 1.4rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00796B !important;
}

.dropdown-toggle::after {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* MEGA DROPDOWN MENU */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-width: 600px;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: flex;
    opacity: 1;
}

.mega-menu {
    display: flex;
    background-color: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
}

.menu-left {
    width: 40%;
    background-color: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding: 1rem;
}

.menu-right {
    width: 60%;
    background-color: #fff;
    padding: 1rem 1.5rem;
}

.menu-left button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 0.7rem 1rem;
    font-weight: 500;
    color: #333;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.menu-left button:hover,
.menu-left button.active {
    background-color: #E0F2F1;
    color: #00796B;
}

.menu-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-right li {
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    color: #333;
    cursor: pointer;
}

.menu-right li:hover {
    background-color: #3B82F6;
    color: white;
    text-decoration: none;
}

/* BUTTONS */
.btn-login {
    background-color: #3B82F6;
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #2563EB;
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}


.policy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 15px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #AE5EFF;
  margin-bottom: 10px;
}

.policy-body h2 {
  color: #8e44ad;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid #f0f0f0;
}

.policy-body h3 {
  color: #AE5EFF;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.policy-body p,
.policy-body li,
.policy-body td {
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
}

.policy-table {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.policy-table th {
  background-color: #f8f0ff;
  color: #8e44ad;
  font-weight: 600;
  vertical-align: top;
}

.policy-table td {
  vertical-align: top;
  padding: 15px;
}

.policy-table tr:nth-child(even) {
  background-color: #fafafa;
}

.footer-gradient {
  background: linear-gradient(135deg, #6a82fb, #8e44ad, #2ecc71);
}
