body {
            font-family: Arial, Helvetica, sans-serif;
            background: #f4f6f8;
            margin: 0;
            padding: 0;
            line-height: 1.7;
            color: #333;
        }


.occ-support {
  padding: 70px 20px;
  background: white;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

	
		
		/* HEADER */
.header {
  background: #0b1220;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

/* NAV */
.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.nav ul li a:hover {
  color: #4da3ff;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 65px;
    right: -100%;
    width: 250px;
    height: 100%;
    background: #0b1220;
    transition: 0.3s;
    padding-top: 20px;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    padding-left: 20px;
  }
}





.occ-support-container {
  max-width: 1100px;
  margin: auto;
  
}

.occ-support h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: red;
  text-align: center;
}

.occ-support-sub {
  color: #cbd5e1;
  margin-bottom: 50px;
   color: red;
    text-align: center;
}

/* Support Grid */
.occ-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.occ-support-box {
  background: #0f172a;
  padding: 30px 20px;
  border-radius: 14px;
  transition: 0.3s;
}

.occ-support-box:hover {
  transform: translateY(-6px);
}

.occ-support-box i {
  font-size: 40px;
  color: #4da3ff;
  margin-bottom: 15px;
}

.occ-support-box h3 {
  margin-bottom: 8px;
}

.occ-support-box p {
  font-size: 14px;
  color: #cbd5e1;
}

.occ-support-box a,
.occ-support-box span {
  display: block;
  margin-top: 10px;
  color: #4da3ff;
  text-decoration: none;
}

/* FAQ */
.occ-faq h2 {
  margin-bottom: 25px;
   color: red;
    text-align: center;
}

.occ-faq-item {
  margin-bottom: 15px;
  text-align: left;
}

.faq-question {
  width: 100%;
  background: #1e293b;
  color: #ffffff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #020617;
  border-radius: 0 0 10px 10px;
}

.faq-answer p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
}



     
.occ-footer {
  background: #0b1220;
  color: #ffffff;
  padding: 50px 20px 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.occ-footer-container {
  max-width: 1100px;
  margin: auto;
}

.occ-footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.occ-footer-col h5 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.occ-footer-col a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.occ-footer-col a:hover {
  color: #4da3ff;
}

.occ-footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.occ-footer-contact i {
  color: #4da3ff;
  font-size: 16px;
}

.occ-footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.occ-footer-contact a:hover {
  color: #4da3ff;
}

/* Footer Bottom */
.occ-footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #1f2937;
  padding-top: 15px;
  text-align: center;
}

.occ-footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-col {
    text-align: center;
    margin-bottom: 30px;
  }
}
