/* style.css */
body {
  font-family: "Titillium Web", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  text-align: center;
}

img.logo {
  width: 100px;
  margin: 20px auto 10px;
}
.title-main {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom:0px auto 20px;
  padding: 0px 20px;
}
.title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom:0px auto 20px;
}
h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 30px 20px 20px;
  text-align: left;
}

.card {
  margin: 20px 20px;
  padding: 24px 20px;
  border-radius: 20px;
  color: white;
  display: flex;
  align-items: center;
  text-align: left;
  text-decoration: none;
}

.icon {
  width: 40px;
  height: 40px;
  font-size: 24px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #333;
}

.card-content {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}

.red {
  background-color: #c94040;
}
.blue {
  background-color: #233ccf;
}
.pink {
  background-color: #cc5a92;
}
.purple {
  background-color: #6b3ec7;
}

.statistics {
  margin: 0px 0;
  padding: 10px 30px;
  background-color: #f4f7ff;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.stat {
  font-size: 16px;
}

.stat strong {
  display: block;
  font-size: 20px;
  margin-top: 5px;
}

.button-container {
  margin: 30px 20px;
  text-align: center;
}

.button {
  background-color: #2e43f0;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.button:hover {
  background-color: #1c2fb5;
}

/* ACCORDION STYLES */

.accordion-item {
  background-color: #c94040;
  color: #fff;
  margin: 16px 20px;
  border-radius: 16px;
  text-align: left;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 16px;
  cursor: pointer;
}

.accordion-header-content {
  display: flex;
  align-items: center;
}

.accordion-content {
  background: #fff;
  color: #000000;
  padding: 12px 20px;
  font-size: 15px;
  border: 2px solid #c94040;
  border-top: none;
  display: none;
  animation: expand 0.3s ease-out;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.accordion-content .grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-auto-rows: auto;
  margin: 15px auto;
  gap: 10px;               /* space between items */
  justify-content: center; /* center the whole grid */
  align-items: center;     /* vertically center each logo */
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}

.back-button {
  margin: 40px 20px;
  text-align: center;
}

.back-button a {
  background: #233ccf;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

@keyframes expand {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.rect-container {
  display: flex;
  justify-content: center;   /* center the three boxes as a group */
  gap: 10px;                  /* space between boxes */
  margin-bottom: 20px;
}

.rect {
  background-color: #2A4CDF;
  color: #fff;
  padding: 5px;
  border-radius: 6px;
  text-align: center;
  width: 110px;               /* or whatever fixed width you like */
}

.rect .label {
  text-transform: uppercase;
  font-size: 0.65rem;            /* adjust for your design */
  margin-bottom: 4px;
}

.rect .value {
  font-size: 0.9rem;         /* smaller than the label */
  font-weight: bold;
  line-height: 1;
}
.features { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start;}
.feature-item { display: flex; align-items: flex-start; margin-bottom: 20px; }
.feature-item img { width: 50px; height: 50px; margin-right: 0.75rem; vertical-align: top;}
.feature-item .title { font-size: 1rem; font-weight: bold; margin: 0 0 0.25rem 0; text-align: left;}
.feature-item .desc { color: #000; margin: 0; font-size: 0.95rem; text-align: left; }


.feature-header {display: flex; align-items: center; gap:0.5rem;}
.feature-header .imghead {width: 32px; height: auto;}
.feature-header .title { font-weight: bold; margin: 0 0 0.25rem 0; text-align: left;}

ul {
  margin-top: 0.3em;
  margin-bottom: 1em;
  margin-left:30px;
  padding-left: 0px;
}

.main-img {
  width: 90%;
  height: auto;
}

@media (min-width: 750px) {
  .main-img {
    max-width: 600px;
  }
}