.navbar {
	margin: 48px 0% !important;
	background-color: transparent;
	border-bottom: 1px solid #ccc;
}
.top-padding{
	padding-top:71px;
}
.top-heading{
	font-size:3.4rem;
}
.content{
	font-size:1.7rem;
}



@media only screen and (max-width:768px) {
 .navbar {
 background-color: #fff;
 border-bottom: 1px solid #ccc;
 margin: 0px 0% !important;
}
.top-padding{
	padding-top:0px;
}
}
	
.faq-container {
  max-width: 1100px;
  margin: auto;
}

.faq-item {
  background: #e3e9f1d6;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: none;
  border: none;
  padding: 16px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "▼"; 
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.faq-question.active::after {
  transform: rotate(-180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease;
  background-color: #f8f8f8;
}

.faq-answer p {
  margin: 15px 0;
  color: #333;
  font-size: 15px;
}
.faq-answer ul
{
	list-style-type:disc;
	font-size: 1.6rem;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}


/* Features Section */
.features {
  padding: 60px 10px;
}

.feature-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Card Design */
.feature-card {
  background: linear-gradient(135deg, #ddeef9 0%, #ece5fb 100%);
  width: 48%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.feature-card h2 {
  font-size: 2rem;
  color: #0055aa;
  margin-bottom: 15px;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.feature-card ul li i {
    color: #1b6bd3;
    margin-right: 10px;
    font-size: 1.6rem;
    top: 20px;
    padding-top: 8px;
}
.view-btn {
  background: linear-gradient(90deg, #2f9ce9, #0d2dcb);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-top: 15px;
  align-self: flex-start;
}

.view-btn:hover {
  background: linear-gradient(90deg, #0964a5, #7c8fed);
}
.view{
	color:#ffffff;
	text-decoration:none;
	font-size:1.5rem;
}
.view:hover{
	color:#ffffff;
	text-decoration:none;
	font-size:1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .feature-card {
    width: 100%;
  }
}

