* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.UangIndo-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

.UangIndo-header-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 80px 0 80px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.UangIndo-header-minimal.UangIndo-navbar-scrolled {
  padding: 20px 80px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
}

.UangIndo-company-logo {
  display: flex;
  align-items: center;

  img {
    width: 60px;
  }

  span {
    margin-left: 10px;
    font-weight: 600;
    font-size: 24px;
  }
}

.UangIndo-nav-minimal {
  display: flex;
  gap: 40px;
}

.UangIndo-nav-link-minimal {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  padding: .4rem 1rem;
  border-radius: 10px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.UangIndo-nav-link-minimal:hover,
.UangIndo-nav-active-minimal {
  background: #EA4143;
  color: #fff;
  transform: scale(1.08);
}

.UangIndo-hero-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 4rem 6rem 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 80vh;
}

.UangIndo-hero-content-minimal {
  flex: 1;
  max-width: 600px;
}

.UangIndo-hero-badge-minimal {
  display: inline-block;
  background: linear-gradient(135deg, #EA4143, #ff6b6d);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(234, 65, 67, 0.3);
}

.UangIndo-title-minimal {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.UangIndo-hero-divider-minimal {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #EA4143, #ff6b6d);
  margin-bottom: 2rem;
}

.UangIndo-subtitle-minimal {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.UangIndo-hero-actions-minimal {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.UangIndo-cta-btn-minimal {
  display: inline-block;
  background: #EA4143;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 56px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(234, 65, 67, 0.3);
}

.UangIndo-cta-btn-minimal:hover {
  background: #ff6b6d;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(234, 65, 67, 0.4);
}

.UangIndo-secondary-btn-minimal {
  display: inline-block;
  background: transparent;
  color: #EA4143;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 56px;
  border: 2px solid #EA4143;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 1px;
  text-decoration: none;
}

.UangIndo-secondary-btn-minimal:hover {
  background: #EA4143;
  color: #fff;
  transform: scale(1.05);
}

.UangIndo-hero-visual-minimal {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.UangIndo-hero-visual-minimal img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.UangIndo-section-minimal {
  padding: 5rem 4rem;
}

.UangIndo-section-header-minimal {
  text-align: center;
  margin-bottom: 3rem;
}

.UangIndo-section-title-minimal {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
}

.UangIndo-section-subtitle-minimal {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.UangIndo-section-filter-minimal {
  background-color: #f8fafc;
}

.UangIndo-filter-list-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.UangIndo-filter-card-minimal {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
  text-align: center;
}

.UangIndo-filter-card-minimal:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.UangIndo-filter-icon-minimal {
  font-size: 32px;
  margin-bottom: 1rem;
}

.UangIndo-filter-label-minimal {
  display: block;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.UangIndo-filter-select-minimal {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  color: #333333;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.UangIndo-filter-select-minimal:focus {
  outline: none;
  border-color: #EA4143;
}

.UangIndo-section-products-list-minimal {
  background-color: #ffffff;
}

.UangIndo-products-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.UangIndo-product-item-minimal {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}

.UangIndo-product-item-minimal:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(234, 65, 67, 0.15);
}

.UangIndo-product-item-minimal img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  object-fit: cover;
  margin: 20px auto 0;
}

.UangIndo-product-info-minimal {
  padding: 2rem;
}

.UangIndo-product-badge-minimal {
  display: inline-block;
  background: linear-gradient(135deg, #EA4143, #ff6b6d);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.UangIndo-product-name-minimal {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.UangIndo-product-details-minimal {
  margin-bottom: 1.5rem;
}

.UangIndo-product-detail-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.UangIndo-product-detail-label-minimal {
  font-weight: 600;
  color: #64748b;
  font-size: 0.9rem;
}

.UangIndo-product-amount-minimal,
.UangIndo-product-term-minimal,
.UangIndo-product-rate-minimal {
  font-weight: 600;
  color: #1e293b;
}

.UangIndo-product-features-minimal {
  margin-bottom: 1.5rem;
}

.UangIndo-product-feature-minimal {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.UangIndo-product-btn-minimal {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #EA4143, #ff6b6d);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  text-align: center;
}

.UangIndo-product-btn-minimal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(234, 65, 67, 0.3);
}

.UangIndo-section-compare-minimal {
  background-color: #f8fafc;
}

.UangIndo-compare-table-minimal {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.UangIndo-compare-header-minimal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: linear-gradient(135deg, #EA4143, #ff6b6d);
  color: #ffffff;
}

.UangIndo-compare-row-minimal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #e2e8f0;
}

.UangIndo-compare-row-minimal:nth-child(even) {
  background-color: #f8fafc;
}

.UangIndo-compare-cell-minimal {
  padding: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.UangIndo-compare-header-minimal .UangIndo-compare-cell-minimal {
  font-weight: 600;
  font-size: 1.1rem;
}

.UangIndo-section-cta-minimal {
  margin: 5rem auto;
  background: linear-gradient(135deg, #EA4143, #ff6b6d);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  color: #ffffff;
}

.UangIndo-cta-content-minimal {
  max-width: 600px;
  margin: 0 auto;
}

.UangIndo-cta-title-minimal {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.UangIndo-cta-subtitle-minimal {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.UangIndo-cta-actions-minimal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.UangIndo-cta-primary-btn-minimal {
  display: inline-block;
  background: #ffffff;
  color: #EA4143;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.UangIndo-cta-primary-btn-minimal:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.UangIndo-cta-secondary-btn-minimal {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border: 2px solid #ffffff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.UangIndo-cta-secondary-btn-minimal:hover {
  background: #ffffff;
  color: #EA4143;
  transform: scale(1.05);
}

.UangIndo-footer-minimal {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0;
  margin-top: 120px;
}

.UangIndo-footer-main-minimal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.UangIndo-footer-info-minimal {
  flex: 1;
  margin-left: 80px;
}

.UangIndo-footer-contact-minimal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.UangIndo-footer-contact-minimal span {
  color: #cbd5e1;
  font-size: 16px;
}

.UangIndo-footer-copyright-minimal span {
  color: #94a3b8;
  font-size: 14px;
}

.UangIndo-cookies-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  z-index: 1001;
  display: none;
}

.UangIndo-cookies-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.UangIndo-cookies-content span {
  color: #666;
  font-size: 0.9rem;
}

.UangIndo-cookies-btn {
  background: #EA4143;
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.UangIndo-cookies-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .UangIndo-header-minimal {
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .UangIndo-nav-minimal {
    gap: 2rem;
  }

  .UangIndo-hero-minimal {
    padding: 120px 2rem 4rem 2rem;
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .UangIndo-title-minimal {
    font-size: 2.5rem;
  }

  .UangIndo-section-minimal {
    padding: 3rem 2rem;
  }

  .UangIndo-section-title-minimal {
    font-size: 2rem;
  }

  .UangIndo-filter-list-minimal {
    grid-template-columns: 1fr;
  }

  .UangIndo-products-grid-minimal {
    grid-template-columns: 1fr;
  }

  .UangIndo-compare-table-minimal {
    overflow-x: auto;
  }

  .UangIndo-compare-header-minimal,
  .UangIndo-compare-row-minimal {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    min-width: 600px;
  }

  .UangIndo-footer-minimal {
    padding: 60px 0;
  }

  .UangIndo-footer-main-minimal {
    flex-direction: column;
    gap: 2rem;
    padding: 0 40px;
  }

  .UangIndo-hero-actions-minimal {
    flex-direction: column;
    align-items: center;
  }

  .UangIndo-cta-actions-minimal {
    flex-direction: column;
    align-items: center;
  }

  .UangIndo-section-cta-minimal {
    padding: 3rem 2rem;
  }

  .UangIndo-cta-title-minimal {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .UangIndo-title-minimal {
    font-size: 2rem;
  }

  .UangIndo-subtitle-minimal {
    font-size: 1rem;
  }

  .UangIndo-section-title-minimal {
    font-size: 1.5rem;
  }

  .UangIndo-compare-cell-minimal {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .UangIndo-cta-title-minimal {
    font-size: 1.5rem;
  }

  .UangIndo-cta-subtitle-minimal {
    font-size: 1rem;
  }
}

/* 产品详情页面样式 */
.UangIndo-breadcrumb {
  background: #f8f9fa;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
}

.UangIndo-breadcrumb a {
  color: #EA4143;
  text-decoration: none;
  transition: color 0.3s ease;
}

.UangIndo-breadcrumb a:hover {
  color: #d63384;
}

.UangIndo-breadcrumb span {
  color: #6c757d;
}

.UangIndo-product-detail-main {
  padding: 60px 0;
  background: #ffffff;
}

.UangIndo-product-overview {
  margin-bottom: 80px;
}

.UangIndo-product-header {
  text-align: center;
  margin-bottom: 60px;
}

.UangIndo-product-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EA4143, #d63384);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.UangIndo-product-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.UangIndo-product-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.UangIndo-product-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.UangIndo-highlight-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.UangIndo-highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(234, 65, 67, 0.15);
}

.UangIndo-highlight-item i {
  font-size: 2.5rem;
  color: #EA4143;
  margin-bottom: 20px;
}

.UangIndo-highlight-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.UangIndo-highlight-item p {
  color: #6c757d;
  font-size: 1rem;
}

.UangIndo-product-details {
  margin-bottom: 80px;
}

.UangIndo-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.UangIndo-detail-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.UangIndo-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(234, 65, 67, 0.15);
}

.UangIndo-card-header {
  background: linear-gradient(135deg, #EA4143, #d63384);
  color: white;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.UangIndo-card-header i {
  font-size: 1.5rem;
}

.UangIndo-card-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.UangIndo-card-content {
  padding: 30px;
}

.UangIndo-card-content h3 {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 25px;
}

.UangIndo-card-content h3:first-child {
  margin-top: 0;
}

.UangIndo-card-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.UangIndo-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.UangIndo-card-content li {
  color: #6c757d;
  padding: 8px 0;
  border-bottom: 1px solid #f1f3f4;
  position: relative;
  padding-left: 25px;
}

.UangIndo-card-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #EA4143;
  font-weight: bold;
}

.UangIndo-fee-table {
  margin-bottom: 30px;
}

.UangIndo-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f4;
}

.UangIndo-fee-row:last-child {
  border-bottom: none;
}

.UangIndo-fee-row span:first-child {
  color: #6c757d;
  font-weight: 500;
}

.UangIndo-fee-row span:last-child {
  color: #1a1a1a;
  font-weight: 600;
}

.UangIndo-calculator {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-top: 25px;
}

.UangIndo-calculator h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.UangIndo-calc-input {
  margin-bottom: 20px;
}

.UangIndo-calc-input label {
  display: block;
  margin-bottom: 8px;
  color: #6c757d;
  font-weight: 500;
}

.UangIndo-calc-input input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.UangIndo-calc-input input:focus {
  outline: none;
  border-color: #EA4143;
}

.UangIndo-calc-btn {
  background: linear-gradient(135deg, #EA4143, #d63384);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
}

.UangIndo-calc-btn:hover {
  transform: translateY(-2px);
}

.UangIndo-calc-result {
  margin-top: 20px;
}

.UangIndo-process-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.UangIndo-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.UangIndo-step-number {
  background: linear-gradient(135deg, #EA4143, #d63384);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.UangIndo-step-content h3 {
  margin: 0 0 8px 0;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
}

.UangIndo-step-content p {
  margin: 0;
  color: #6c757d;
  line-height: 1.5;
}

.UangIndo-product-faq {
  margin-bottom: 80px;
}

.UangIndo-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.UangIndo-faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.UangIndo-faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.UangIndo-faq-question:hover {
  background-color: #f8f9fa;
}

.UangIndo-faq-question h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
}

.UangIndo-faq-question i {
  color: #EA4143;
  transition: transform 0.3s ease;
}

.UangIndo-faq-open .UangIndo-faq-question i {
  transform: rotate(180deg);
}

.UangIndo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f8f9fa;
}

.UangIndo-faq-answer p {
  margin: 0;
  padding: 0 30px 25px 30px;
  color: #6c757d;
  line-height: 1.6;
}

.UangIndo-product-apply {
  background: linear-gradient(135deg, #EA4143, #d63384);
  color: white;
  padding: 80px 0;
  text-align: center;
  border-radius: 20px;
  margin: 40px 0;
}

.UangIndo-apply-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.UangIndo-apply-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.UangIndo-apply-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.UangIndo-apply-buttons .UangIndo-btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.UangIndo-apply-buttons .UangIndo-btn:hover {
  transform: translateY(-3px);
}

.UangIndo-btn-primary {
  background: #ffffff;
  color: #EA4143;
}

.UangIndo-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .UangIndo-product-header h1 {
    font-size: 2.5rem;
  }

  .UangIndo-product-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .UangIndo-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .UangIndo-apply-buttons {
    flex-direction: column;
    align-items: center;
  }

  .UangIndo-apply-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .UangIndo-product-header h1 {
    font-size: 2rem;
  }

  .UangIndo-product-subtitle {
    font-size: 1.1rem;
  }

  .UangIndo-card-header {
    padding: 20px 25px;
  }

  .UangIndo-card-content {
    padding: 25px;
  }

  .UangIndo-apply-content h2 {
    font-size: 1.75rem;
  }

  .UangIndo-apply-content p {
    font-size: 1.1rem;
  }
}