/* Page-specific styles for Financial Plans page.
   Shared navbar/footer styles come from css/style.css */
.financial-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 80px;
  align-items: flex-start;
}

.financial-left {
  flex: 1 1 420px;
}

.financial-left h1 {
  font-size: 56px;
}

.financial-left h3 {
  color: #1b5e4b;
  margin: 18px 0;
}

.financial-points li {
  margin-bottom: 12px;
}

.consult-btn {
  display: inline-block;
  background: #ffc107;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
}

.financial-card {
  flex: 1 1 360px;
  max-width: 420px;
  background: #fff7e3;
  border: 4px solid #f2a900;
  border-radius: 20px;
  padding: 24px;
}

.financial-title {
  font-size: 22px;
}

.price-cut {
  text-decoration: line-through;
}

.price-free {
  background: #ffc107;
  padding: 3px 8px;
  font-weight: bold;
}

.financial-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.financial-header {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.financial-body {
  display: none;
  padding-top: 10px;
  font-size: 14px;
}

.financial-item.active .financial-body {
  display: block;
}

/* Mobile Fix */
@media (max-width: 480px) {
  .financial-section {
    padding: 30px 16px;
  }

  .financial-left h1 {
    font-size: 34px;
  }

  .consult-btn {
    width: 100%;
    text-align: center;
  }
}
