/* ===== Mobile Service Accordion ===== */
.mobile-ribbons {
  padding: 60px 0;
}

.mobile-ribbons h2 {
  text-align: center;
  font-size: 32px;
  color: #2B3A55;
  margin-bottom: 40px;
  font-weight: 700;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Ribbon look */
.accordion-header {
  cursor: pointer;
  padding: 15px 20px;
  background: #2b3a55;
  color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
}

.accordion-header .arrow {
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow {
  transform: rotate(180deg); /* rotate arrow when open */
}

.accordion-header:hover {
  background: #1f2e44;
}

.accordion-header.active {
  background: #1f2e44;
}

/* Dropdown content */
.accordion-content {
  display: none;
  padding: 15px 20px;
  background: #f8f9fc;
  border-left: 2px solid #2b3a55;
  border-right: 2px solid #2b3a55;
  border-bottom: 2px solid #2b3a55;
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
}

/* Columns inside content */
.accordion-content .package-columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 25px;
  margin-top: 10px;
  overflow-x: auto;
}

.accordion-content .column {
  flex: 0 0 260px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  min-width: 260px;
}

.accordion-content .column h4 {
  margin-top: 0;
  font-size: 17px;
  color: #1A2B3C;
  margin-bottom: 10px;
  font-weight: 700;
}

.accordion-content .column ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.45;
  color: #333;
}

.accordion-content .column ul li {
  position: relative;
  padding-left: 22px; /* space for tick */
  margin-bottom: 10px;
}

.accordion-content .column ul li::before {
  content: '✔'; /* tick mark */
  position: absolute;
  left: 0;
  color: #2B3A55;
  font-weight: bold;
}

/* Buttons container */
/* Buttons container */
.column-buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: column; /* stack buttons vertically */
  gap: 10px;
  width: 100%;
}

/* Unified button style */
.column-buttons a {
  display: block;                  /* full row */
  width: 100%;                     /* fit inside column */
  padding: 12px 0;                 /* equal height */
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background: #2b3a55;             /* same color for all */
  color: #fff;
  border: none;
  white-space: normal;             /* allow text wrap, prevent overflow */
  box-sizing: border-box;
}

.column-buttons a:hover {
  background: #1f2e44;
}

/* Responsive */
@media (max-width: 1024px) {
  .accordion-content .column {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .accordion-header {
    font-size: 16px;
  }
}