#account_plan .account-plan__inner .account_headline {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
#account_plan .account-plan__inner .plan-section-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}
#account_plan .account-plan__inner .plan-section-tabs .plan-tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#account_plan .account-plan__inner .plan-section-tabs .plan-tab-btn:hover {
  color: #0073aa;
}
#account_plan .account-plan__inner .plan-section-tabs .plan-tab-btn.active {
  color: #0073aa;
  border-bottom-color: #0073aa;
}
#account_plan .account-plan__inner .plan-section {
  display: none;
}
#account_plan .account-plan__inner .plan-section.active {
  display: block;
}
#account_plan .account-plan__inner .current_plan_section {
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#account_plan .account-plan__inner .current_plan_section h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
#account_plan .account-plan__inner .current_plan_section .current_plan_info .plan-name {
  font-size: 24px;
  font-weight: bold;
  color: #0073aa;
  margin-bottom: 20px;
}
#account_plan .account-plan__inner .current_plan_section .current_plan_info .plan-amount {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
#account_plan .account-plan__inner .current_plan_section .current_plan_info .next-payment-date {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}
#account_plan .account-plan__inner .current_plan_section .current_plan_info .subscription-actions {
  margin-top: 20px;
}
#account_plan .account-plan__inner .current_plan_section .no-plan-message {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}
#account_plan .account-plan__inner .current_plan_section .no-plan-message p {
  margin: 10px 0;
  font-size: 16px;
}
#account_plan .account-plan__inner .payment_history_section h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
#account_plan .account-plan__inner .payment_history_section .payment_history_table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#account_plan .account-plan__inner .payment_history_section .payment_history_table thead {
  background: #f5f5f5;
}
#account_plan .account-plan__inner .payment_history_section .payment_history_table thead th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #e0e0e0;
}
#account_plan .account-plan__inner .payment_history_section .payment_history_table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
#account_plan .account-plan__inner .payment_history_section .payment_history_table tbody tr:hover {
  background: #f9f9f9;
}
#account_plan .account-plan__inner .payment_history_section .payment_history_table tbody tr:last-child {
  border-bottom: none;
}
#account_plan .account-plan__inner .payment_history_section .payment_history_table tbody tr td {
  padding: 15px;
  color: #555;
}
#account_plan .account-plan__inner .plan-change-section .plan-stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  padding: 20px 0;
}
#account_plan .account-plan__inner .plan-change-section .plan-stepper .stepper-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
#account_plan .account-plan__inner .plan-change-section .plan-stepper .stepper-step .step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stepper-step.active #account_plan .account-plan__inner .plan-change-section .plan-stepper .stepper-step .step-icon {
  background: #0073aa;
  color: #fff;
}
#account_plan .account-plan__inner .plan-change-section .plan-stepper .stepper-step .step-label {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}
.stepper-step.active #account_plan .account-plan__inner .plan-change-section .plan-stepper .stepper-step .step-label {
  color: #0073aa;
}
#account_plan .account-plan__inner .plan-change-section .plan-stepper .stepper-step.active .step-icon {
  background: #0073aa;
  color: #fff;
}
#account_plan .account-plan__inner .plan-change-section .plan-stepper .stepper-step.active .step-label {
  color: #0073aa;
}
#account_plan .account-plan__inner .plan-change-section .plan-stepper .stepper-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: 0 20px;
  margin-top: -30px;
}
#account_plan .account-plan__inner .plan-change-section .plan-step-content {
  display: none;
}
#account_plan .account-plan__inner .plan-change-section .plan-step-content.active {
  display: block;
}
#account_plan .account-plan__inner .plan-change-section .plan-step-content h3 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
#account_plan .account-plan__inner .plan-change-section .plan-cards {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
#account_plan .account-plan__inner .plan-change-section .plan-cards .plan-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
#account_plan .account-plan__inner .plan-change-section .plan-cards .plan-card:hover {
  border-color: #0073aa;
  -webkit-box-shadow: 0 4px 12px rgba(0, 115, 170, 0.15);
          box-shadow: 0 4px 12px rgba(0, 115, 170, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
#account_plan .account-plan__inner .plan-change-section .plan-cards .plan-card .plan-card-header {
  margin-bottom: 15px;
}
#account_plan .account-plan__inner .plan-change-section .plan-cards .plan-card .plan-card-header .plan-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
#account_plan .account-plan__inner .plan-change-section .plan-cards .plan-card .plan-card-body {
  margin-bottom: 20px;
}
#account_plan .account-plan__inner .plan-change-section .plan-cards .plan-card .plan-card-body .plan-card-amount {
  font-size: 24px;
  font-weight: bold;
  color: #0073aa;
  margin: 10px 0;
}
#account_plan .account-plan__inner .plan-change-section .plan-cards .plan-card .plan-card-body .plan-card-interval {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}
#account_plan .account-plan__inner .plan-change-section .plan-cards .plan-card .plan-card-footer .plan-select-btn {
  width: 100%;
  padding: 12px 20px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#account_plan .account-plan__inner .plan-change-section .plan-cards .plan-card .plan-card-footer .plan-select-btn:hover {
  background: #005a87;
}
#account_plan .account-plan__inner .plan-change-section .saved-card-info,
#account_plan .account-plan__inner .plan-change-section .no-card-message {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
#account_plan .account-plan__inner .plan-change-section .saved-card-info p,
#account_plan .account-plan__inner .plan-change-section .no-card-message p {
  margin: 10px 0;
  font-size: 15px;
  color: #555;
}
#account_plan .account-plan__inner .plan-change-section .confirmation-details {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}
#account_plan .account-plan__inner .plan-change-section .confirmation-details .confirmation-plan,
#account_plan .account-plan__inner .plan-change-section .confirmation-details .confirmation-payment {
  margin-bottom: 20px;
}
#account_plan .account-plan__inner .plan-change-section .confirmation-details .confirmation-plan:last-child,
#account_plan .account-plan__inner .plan-change-section .confirmation-details .confirmation-payment:last-child {
  margin-bottom: 0;
}
#account_plan .account-plan__inner .plan-change-section .confirmation-details .confirmation-plan h4,
#account_plan .account-plan__inner .plan-change-section .confirmation-details .confirmation-payment h4 {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #0073aa;
  padding-bottom: 10px;
}
#account_plan .account-plan__inner .plan-change-section .confirmation-details .confirmation-plan p,
#account_plan .account-plan__inner .plan-change-section .confirmation-details .confirmation-payment p {
  margin: 8px 0;
  font-size: 15px;
  color: #555;
}
#account_plan .account-plan__inner .plan-change-section .step-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 30px;
}
#account_plan .account-plan__inner .plan-change-section .step-navigation .button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#account_plan .account-plan__inner .plan-change-section .step-navigation .button.button-primary {
  background: #0073aa;
  color: #fff;
  border: none;
}
#account_plan .account-plan__inner .plan-change-section .step-navigation .button.button-primary:hover {
  background: #005a87;
}
#account_plan .account-plan__inner .plan-change-section .step-navigation .button.button-secondary {
  background: #f5f5f5;
  color: #666;
  border: 1px solid #e0e0e0;
}
#account_plan .account-plan__inner .plan-change-section .step-navigation .button.button-secondary:hover {
  background: #e0e0e0;
}
#account_plan .account-plan__inner .payment_section .selected_plan_summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}
#account_plan .account-plan__inner .payment_section .selected_plan_summary p {
  margin: 8px 0;
  font-size: 15px;
}
#account_plan .account-plan__inner .payment_section .payment_method_tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
#account_plan .account-plan__inner .payment_section .payment_method_tabs .payment_method_tab {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#account_plan .account-plan__inner .payment_section .payment_method_tabs .payment_method_tab.active {
  border-color: #0073aa;
  background: #0073aa;
  color: #fff;
}
#account_plan .account-plan__inner .payment_section .payment_method_tabs .payment_method_tab:hover:not(.active) {
  border-color: #0073aa;
  color: #0073aa;
}
#account_plan .account-plan__inner .payment_section .payment_method_content {
  display: none;
}
#account_plan .account-plan__inner .payment_section .payment_method_content.active {
  display: block;
}
#account_plan .account-plan__inner .payment_section .payment_method_content #card-element {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
  background: #fff;
}
#account_plan .account-plan__inner .payment_section .payment_method_content #card-errors {
  color: #fa755a;
  margin-bottom: 15px;
  font-size: 14px;
  min-height: 20px;
}
#account_plan .account-plan__inner .payment_section .payment_method_content .bank_info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}
#account_plan .account-plan__inner .payment_section .payment_method_content .bank_info p {
  margin: 8px 0;
}
#account_plan .account-plan__inner .notice {
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
}
#account_plan .account-plan__inner .notice.notice-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
#account_plan .account-plan__inner .notice.notice-warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}
#account_plan .account-plan__inner .notice.notice-info {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}
#account_plan .account-plan__inner .plan_selection_section {
  margin-bottom: 40px;
}
#account_plan .account-plan__inner .plan_selection_section h3 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0073aa;
}
#account_plan .account-plan__inner .plan_selection_section .plan_list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  #account_plan .account-plan__inner .plan_selection_section .plan_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#account_plan .account-plan__inner .plan_selection_section .plan_item {
  border: 2px solid #e0e0e0;
  padding: 25px;
  border-radius: 10px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#account_plan .account-plan__inner .plan_selection_section .plan_item:hover {
  border-color: #0073aa;
  -webkit-box-shadow: 0 4px 12px rgba(0, 115, 170, 0.15);
          box-shadow: 0 4px 12px rgba(0, 115, 170, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
#account_plan .account-plan__inner .plan_selection_section .plan_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#0073aa), to(#00a0d6));
  background: linear-gradient(90deg, #0073aa 0%, #00a0d6 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#account_plan .account-plan__inner .plan_selection_section .plan_item:hover::before {
  opacity: 1;
}
#account_plan .account-plan__inner .plan_selection_section .plan_item .plan_title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
#account_plan .account-plan__inner .plan_selection_section .plan_item .plan_price {
  font-size: 28px;
  font-weight: bold;
  color: #0073aa;
  margin: 15px 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  #account_plan .account-plan__inner .plan_selection_section .plan_item .plan_price {
    font-size: 24px;
  }
}
#account_plan .account-plan__inner .plan_selection_section .plan_item p {
  margin: 8px 0;
  color: #666;
  font-size: 14px;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form {
  margin-top: 20px;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .payment_method_selection {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .payment_method_selection label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .payment_method_selection label:last-child {
  margin-bottom: 0;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .payment_method_selection label:hover {
  color: #0073aa;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .payment_method_selection label input[type=radio] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0073aa;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .payment_method_selection label input[type=radio]:checked + span {
  color: #0073aa;
  font-weight: 600;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .payment_method_selection label span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .button {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .button.button-primary {
  background: linear-gradient(135deg, #0073aa 0%, #00a0d6 100%);
  color: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(0, 115, 170, 0.3);
          box-shadow: 0 2px 6px rgba(0, 115, 170, 0.3);
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .button.button-primary:hover {
  background: linear-gradient(135deg, #005a87 0%, #0073aa 100%);
  -webkit-box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4);
          box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
#account_plan .account-plan__inner .plan_selection_section .plan_subscribe_form .button.button-primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 4px rgba(0, 115, 170, 0.3);
          box-shadow: 0 2px 4px rgba(0, 115, 170, 0.3);
}

#account_card_info .account-card-info__inner .stripe-card-element-container {
  margin-bottom: 25px;
}
#account_card_info .account-card-info__inner .stripe-card-element-container .stripe-card-row {
  margin-bottom: 20px;
}
#account_card_info .account-card-info__inner .stripe-card-element-container .stripe-card-row .stripe-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}
#account_card_info .account-card-info__inner .stripe-card-element-container .stripe-card-row .stripe-card-element {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#account_card_info .account-card-info__inner .stripe-card-element-container .stripe-card-row .stripe-card-element:focus {
  border-color: #0073aa;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
          box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
  outline: none;
}
#account_card_info .account-card-info__inner .stripe-card-element-container .stripe-card-row .stripe-card-element.StripeElement--invalid {
  border-color: #df1b41;
  -webkit-box-shadow: 0 0 0 3px rgba(223, 27, 65, 0.1);
          box-shadow: 0 0 0 3px rgba(223, 27, 65, 0.1);
}
#account_card_info .account-card-info__inner .stripe-card-element-container .stripe-card-row:has(.stripe-card-col) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
#account_card_info .account-card-info__inner .stripe-card-element-container .stripe-card-row:has(.stripe-card-col) .stripe-card-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#account_card_info .account-card-info__inner .stripe-error-message {
  color: #df1b41;
  font-size: 13px;
  margin-top: 12px;
  min-height: 20px;
  padding: 8px 12px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#account_card_info .account-card-info__inner .stripe-error-message.visible {
  opacity: 1;
}
#account_card_info .account-card-info__inner .account_headline {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #0073aa;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
#account_card_info .account-card-info__inner .notice {
  margin-bottom: 25px;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
}
#account_card_info .account-card-info__inner .current_card_section {
  margin: 30px 0;
  padding: 25px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#account_card_info .account-card-info__inner .current_card_section h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
}
#account_card_info .account-card-info__inner .current_card_section .current_card_info p {
  margin: 12px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}
#account_card_info .account-card-info__inner .current_card_section .current_card_info p strong {
  color: #333;
  min-width: 120px;
  display: inline-block;
  font-weight: 600;
}
#account_card_info .account-card-info__inner .current_card_section .card-delete-section button {
  background-color: #b10f17;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}
#account_card_info .account-card-info__inner .current_card_section .card-delete-section button:hover {
  opacity: 0.7;
}
#account_card_info .account-card-info__inner .current_card_section .card-delete-section button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
#account_card_info .account-card-info__inner .no_card_section {
  margin: 30px 0;
  padding: 20px 25px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
}
#account_card_info .account-card-info__inner .no_card_section p {
  margin: 0;
  color: #856404;
  font-size: 14px;
  line-height: 1.6;
}
#account_card_info .account-card-info__inner .card_info_section {
  margin: 30px 0;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
#account_card_info .account-card-info__inner .card_info_section h3 {
  margin: 0 0 25px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding-bottom: 15px;
  border-bottom: 2px solid #0073aa;
}
#account_card_info .account-card-info__inner .card-form-actions {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
}
#account_card_info .account-card-info__inner .card-form-actions button {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #005a87;
  color: #fff;
}
#account_card_info .account-card-info__inner .card-form-actions button:hover {
  opacity: 0.7;
}
#account_card_info .account-card-info__inner .card-form-actions button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
#account_card_info .account-card-info__inner .card-form-actions .payment-security-note {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 767px) {
  #account_plan .current_plan_section {
    padding: 20px;
  }
  #account_plan .plan_selection_section .plan_list {
    gap: 15px;
  }
  #account_plan .plan_selection_section .plan_item {
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #account_plan .plan_selection_section .plan_list {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1025px) {
  #account_plan .plan_selection_section .plan_list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}