.margalla-description {
  margin-left: 10px;
  max-width: 400px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.plan-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 32px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}

@media (min-width: 1024px) {
  .plan-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.filter-section {
  display: flex;
  flex-direction: column;
}

.filter-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.icon {
  font-size: 20px;
  color: #4b5563;
}

.filter-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.select-wrapper {
  position: relative;
}

.select-input {
  width: 100%;
  appearance: none;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 40px 12px 16px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

.select-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #9ca3af;
  pointer-events: none;
}

.duration-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

.duration-button:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.duration-button .select-arrow {
  position: static;
  transform: none;
  transition: transform 0.2s;
}

.duration-button.active .select-arrow {
  transform: rotate(180deg);
}

.duration-picker {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  padding: 16px;
  z-index: 10;
}

.duration-picker.active {
  display: block;
}

.picker-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.picker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.picker-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #e5e7eb;
}

.qty-btn i {
  font-size: 14px;
  color: #374151;
}

.qty-value {
  width: 48px;
  text-align: center;
  font-weight: 500;
  color: #111827;
}

.done-btn {
  width: 100%;
  padding: 8px;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.search-btn {
  width: 100%;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.search-btn:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/*#e3b567*/
/* Custom CSS for about section headings */
.about-area .section-title .highlights {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  color: #2c5530;
}

.about-area .section-title .title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.about-area .section-title .subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 15px;
}

/* Keep original styling for other sections */
.key-content .title {
  font-size: 1.5rem; /* Original size for mission title */
}

/* Additional styling for better appearance */
.about-area {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
}

.key-points {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-banner img {
  width: 100%;
  border-radius: 8px;
}

.shape-bg-about {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.shape-bg-about img {
  opacity: 0.1;
}
