.mobile-view {
  display: none;
}

.desktop-view {
  display: unset;
}

.wrapper {
  max-width: 72rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.header {
  background: #fff;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
}
.header h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #004135;
}
.header p {
  color: rgba(63, 63, 63, 0.8);
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.layout {
  display: flex;
}

.sidebar2 {
  width: 33.3333%;
  border-right: 1px solid #e5e7eb;
}
.sidebar2 .list {
  padding: 1rem 1rem 1rem 0.05rem;
}
.sidebar2 .list .item {
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
.sidebar2 .list .item.active {
  background: #004135;
  color: #fff;
}
.sidebar2 .list .item.inactive {
  background: rgba(0, 65, 53, 0.1019607843);
  color: #374151;
}
.sidebar2 .list .item.inactive:hover {
  background: #d1d5db;
}
.sidebar2 .list .item .indicator {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.sidebar2 .list .item .indicator .outer {
  width: 0.75rem;
  height: 0.75rem;
  background: #fff;
  border-radius: 9999px;
}
.sidebar2 .list .item .indicator .inner {
  width: 0.5rem;
  height: 0.5rem;
  background: #059669;
  border-radius: 9999px;
}

.main {
  flex: 1;
  padding: 1rem;
}
.main .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.main .top h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
}
.main .top .applyBtn {
  background: #065f46;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.main .top .applyBtn:hover {
  background: #047857;
}
.main .features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main .features .feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.main .features .feature .icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.main .features .feature .text .title {
  font-weight: 600;
  color: #004135;
}
.main .features .feature .text .desc {
  color: rgba(63, 63, 63, 0.8);
  margin-left: 0.25rem;
}
.main .features .empty {
  color: #6b7280;
  font-style: italic;
}

.type-for-goal-container {
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
}
.type-for-goal-container .header {
  text-align: center;
  margin-bottom: 30px;
}
.type-for-goal-container .header h1 {
  font-size: 24px;
  font-weight: 600;
  color: #004135;
  margin-bottom: 8px;
  line-height: 1.3;
}
.type-for-goal-container .header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.type-for-goal-container .loan-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.type-for-goal-container .loan-section {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e1e5e9;
  overflow: hidden;
  transition: all 0.3s ease;
}
.type-for-goal-container .loan-section.marriage-section {
  background: #e8f5e8;
  border: 2px solid #4caf50;
}
.type-for-goal-container .loan-section .section-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.type-for-goal-container .loan-section .section-header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.type-for-goal-container .loan-section .section-header h3 {
  font-size: 16px;
  font-weight: 500;
  color: #004135;
  margin: 0;
}
.type-for-goal-container .loan-section .section-header .chevron {
  width: 25px;
  height: 25px;
  color: #666;
  transition: transform 0.3s ease;
}
.type-for-goal-container .loan-section .section-header .chevron-active {
  transform: rotate(180deg);
}
.type-for-goal-container .loan-section .section-content {
  padding: 15px 20px 24px;
  animation: fadeIn 0.3s ease;
}
.type-for-goal-container .loan-section .section-content .features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.type-for-goal-container .loan-section .section-content .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.type-for-goal-container .loan-section .section-content .features-list .feature-item .feature-icon {
  width: 20px;
  height: 20px;
  color: #4caf50;
  flex-shrink: 0;
  margin-top: 2px;
  background: #ffffff;
  border-radius: 50%;
  padding: 2px;
}
.type-for-goal-container .loan-section .section-content .features-list .feature-item .feature-text {
  font-size: 14px;
  line-height: 1.5;
}
.type-for-goal-container .loan-section .section-content .features-list .feature-item .feature-text .feature-title {
  font-weight: 600;
  color: #004135;
}
.type-for-goal-container .loan-section .section-content .features-list .feature-item .feature-text .feature-description {
  color: #666;
}
.type-for-goal-container .loan-section .section-content .arrow-icon-right {
  width: 30px;
  height: 20px;
  position: relative;
  top: -1px;
}
.type-for-goal-container .loan-section-active {
  border: 2px solid #00F200 !important;
  background-color: rgba(0, 242, 0, 0.0588235294) !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.heading_d .description p {
  color: #004135;
  padding: 0.5rem 0;
  margin: 0;
}

@media (max-width: 768px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: unset;
  }
}
