.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;
  }
}


.feature-section {
        max-width: 1200px;
        margin: 30px auto;
        padding-bottom: 80px;
    }
    .feature-section h2 {
        text-align: center;
        color: #000000;
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    .feature-section p {
        color: #636363;
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
	.content{
		text-align:center;
	}
    .feature-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .card {
        background: #e3ebef;
        border-radius: 12px;
        padding: 30px 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        overflow: hidden;
    }
    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    }
    /*.card::before {
        content: '';
        position: absolute;
        width: 120%;
        height: 120%;
        background: rgba(26, 115, 232, 0.1);
        top: -10%;
        left: -10%;
        transform: rotate(45deg);
        z-index: 0;
    }*/
    .card-icon {
        font-size: 2.5rem;
        color: #074bb4;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }
    .card h3 {
        color: #074ba3;
        font-size: 2rem;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
		line-height: 1.5;
    }
    .card p {
        color: #555;
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }
    @media (max-width: 768px) {
        .feature-section h2 {
            font-size: 2rem;
        }
    }
	
	