* {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
}

/* color: #007de3; */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.ecom-header {
    /*background-image: url('https://i.ibb.co.com/3mw926kH/banner.jpg');*/
    /*background-position: center;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    color: white;
}

.ecom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.ecom-hero {
    padding: 100px 0;
}

.ecom-hero>* {
    margin-bottom: 20px;
}

.ecom-hero h1 {
    font-size: 48px;
}

.ecom-hero h4 {
    font-size: 32px;
}

.ecom-hero i {
    color: #007de3;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border: 1px solid white;
    border-radius: 50%;
    font-size: 16px;
}

.ecom-hero ul li {
    margin-bottom: 10px;
}

.ecom-hero a {
    background: #007de3;
    color: white;
    padding: 12px 20px;
    border: 1px solid white;
    border-radius: 12px;
    display: inline-block;
}

/* ecom plans */
.ecom-plans {
    margin: 80px 0;
}

.ecom-plans h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #007de3;
}

.ecom-plans p {
    text-align: center;
    color: rgba(0, 0, 0, 0.774);
}

.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.plan-item {
    border: 1px solid #007de330;
    border-radius: 10px;
    transition: .5s;
}

.plan-item:hover {
    border: 1px solid #007de3;
}

.plan-item h4 {
    text-align: center;
    color: #007de3;
    margin: 10px;
    font-size: 24px;
    font-weight: 600;
}

.plan-item h5 {
    background: #007de3;
    color: white;
    font-size: 24px;
    text-align: center;
    padding: 6px 0;
}

.plan-item ul {
    padding: 10px;
}

.plan-item li i {
    color: #007de3;
}

.plan-item li {
    margin-bottom: 6px;
}

.plan-item a {
    display: inline-block;
}

.order-btn {
    text-align: center;
}

.order-btn a {
    background: #007de3;
    color: white;
    padding: 12px 20px;
    border: 1px solid white;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.plan-item hr {
    display: block;
    border-color: #007de330;
    margin-bottom: 10px;
}

/* faq */
.faq-main{
    margin: 80px 0;
}
.faq-main h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #007de3;
}

.faq-main p {
    text-align: center;
    color: rgba(0, 0, 0, 0.774);
}

/*  */



.faq {
margin-top: 20px;
}

details {
  background: white;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #007de330;
  border-left: 3px solid #007de3;
  padding: 10px 15px;
}

summary {
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  list-style: none; /* ডিফল্ট arrow লুকাতে */
  position: relative;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: bold;
  transition: transform 0.3s;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-top: 10px;
  color: #333;
  line-height: 1.5;
}
.faq p{
    text-align: left;
}
/*  */