.membership-plans_container__1iaLz {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: #f8f9fa;
}

.membership-plans_title__UqsDp {
  text-align: center;
  margin-bottom: 3rem;
  color: #0f4c81;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.membership-plans_title__UqsDp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #0f4c81;
  border-radius: 2px;
}

/* Home Button */
.membership-plans_homeButtonContainer__suU4W {
  margin-bottom: 0.5rem;
}

.membership-plans_homeButton__QN61l {
  background-color: #2a5885;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(42, 88, 133, 0.2);
}

.membership-plans_homeButton__QN61l:hover {
  background-color: #1e446d;
  box-shadow: 0 4px 8px rgba(42, 88, 133, 0.3);
  transform: translateY(-2px);
}

/* Free Features Section */
.membership-plans_freeFeaturesSection__NHjWS {
  background-color: #e8f5e9;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #4caf50;
}

.membership-plans_freeFeaturesTitle__PAT6C {
  color: #2e7d32;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  text-align: center;
}

.membership-plans_freeFeaturesContent__Jde19 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .membership-plans_freeFeaturesContent__Jde19 {
    flex-direction: row;
  }
  
  .membership-plans_freeFeaturesList__3KkkW {
    flex: 3;
  }
  
  .membership-plans_freeFeaturesCta__7DkCF {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.membership-plans_freeFeaturesList__3KkkW {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.membership-plans_freeFeatureItem__5Kp3U {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  font-size: 0.9rem;
  color: #333;
}

.membership-plans_freeFeatureItem__5Kp3U::before {
  content: "✓";
  color: #4caf50;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.membership-plans_featureLink__HlrCq {
  color: #2a5885;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
  transition: color 0.2s ease;
}

.membership-plans_featureLink__HlrCq:hover {
  color: #1e446d;
  text-decoration: underline;
}

.membership-plans_freeFeaturesCta__7DkCF {
  text-align: center;
  padding: 0.5rem;
}

.membership-plans_freeFeaturesCta__7DkCF p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
}

.membership-plans_freeButtonsContainer__XkpJ_ {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.membership-plans_freeFeatureButton__Sk0wG {
  background-color: #4caf50;
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(76, 175, 80, 0.2);
  display: inline-block;
  font-size: 0.9rem;
}

.membership-plans_freeFeatureButton__Sk0wG:hover {
  background-color: #3e8e41;
  box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

/* Paid Plans Section */
.membership-plans_paidPlansTitle__H7ECR {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #0f4c81;
  font-size: 1.8rem;
  font-weight: 700;
}

.membership-plans_plansContainer__a1uFU {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.membership-plans_planCard__7kVpz {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.membership-plans_planCard__7kVpz:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.membership-plans_planCard__7kVpz:nth-child(1) {
  border-top: 5px solid #2196f3;
}

.membership-plans_planCard__7kVpz:nth-child(2) {
  border-top: 5px solid #ff9800;
}

.membership-plans_planCard__7kVpz:nth-child(3) {
  border-top: 5px solid #9c27b0;
}

.membership-plans_highlighted___t8Oq {
  border-color: #0f4c81;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.2);
  position: relative;
  z-index: 1;
  transform: scale(1.05);
}

.membership-plans_highlighted___t8Oq::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  right: -30px;
  background-color: #ff9800;
  color: white;
  padding: 8px 30px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.membership-plans_planName__EiwT5 {
  margin-top: 0;
  color: #0f4c81;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.membership-plans_planName__EiwT5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #0f4c81;
  border-radius: 1.5px;
}

.membership-plans_pricing__lEGu1 {
  margin: 1rem 0;
  text-align: center;
  padding: 0.75rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.membership-plans_price__mlu5u {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin: 0.3rem 0;
  color: #333;
  line-height: 1;
}

.membership-plans_price__mlu5u span {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
  margin-left: 4px;
}

.membership-plans_yearlyPrice__5ZJ49 {
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-style: italic;
}

.membership-plans_featuresList__6qBLO {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
  flex-grow: 1;
}

.membership-plans_featureItem__1d4XS {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 2rem;
  font-size: 0.9rem;
  color: #555;
}

.membership-plans_featureItem__1d4XS:last-child {
  border-bottom: none;
}

.membership-plans_featureItem__1d4XS::before {
  content: "✓";
  color: #4caf50;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.membership-plans_featureItem__1d4XS .membership-plans_featureLink__HlrCq {
  word-break: break-word;
}

.membership-plans_subscribeButton__eouO_ {
  background-color: #0f4c81;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  display: block;
  text-decoration: none;
  margin-top: 1rem;
  box-shadow: 0 4px 6px rgba(15, 76, 129, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.membership-plans_subscribeButton__eouO_:hover {
  background-color: #0d3d68;
  box-shadow: 0 6px 12px rgba(15, 76, 129, 0.3);
  transform: translateY(-2px);
}

.membership-plans_currentPlan__MPKir {
  background-color: #4caf50;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
  box-shadow: 0 4px 6px rgba(76, 175, 80, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.membership-plans_freeButton__V6qG2 {
  background-color: #4caf50;
}

.membership-plans_freeButton__V6qG2:hover {
  background-color: #3e8e41;
}

.membership-plans_comingSoon__fz__p {
  margin-top: 4rem;
  padding: 2rem;
  background-color: #f0f7ff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #0f4c81;
  opacity: 0.7;
  position: relative;
}

.membership-plans_comingSoon__fz__p h3 {
  color: #0f4c81;
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.membership-plans_comingSoon__fz__p p {
  color: #555;
  line-height: 1.6;
}

/* Coming Soon Badge */
.membership-plans_comingSoonBadge__XlX9I {
  display: inline-block;
  background-color: #ff9800;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-left: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Coming Soon Button */
.membership-plans_comingSoonButton__QfaLs {
  background-color: #e0e0e0;
  color: #999;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  cursor: not-allowed;
  border: 2px solid #e0e0e0;
  margin-top: 1rem;
}

/* Plan card modifications for coming soon */
.membership-plans_planCard__7kVpz.membership-plans_comingSoon__fz__p {
  opacity: 0.8;
  background-color: #f8f9fa;
}

.membership-plans_planCard__7kVpz.membership-plans_comingSoon__fz__p .membership-plans_featuresList__6qBLO {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .membership-plans_plansContainer__a1uFU {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .membership-plans_highlighted___t8Oq {
    transform: scale(1);
  }
  
  .membership-plans_title__UqsDp {
    font-size: 1.8rem;
  }
  
  .membership-plans_freeFeaturesSection__NHjWS {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .membership-plans_freeFeaturesTitle__PAT6C {
    font-size: 1.4rem;
  }
  
  .membership-plans_planCard__7kVpz {
    padding: 1rem;
  }
  
  .membership-plans_paidPlansTitle__H7ECR {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .membership-plans_homeButtonContainer__suU4W {
    margin-bottom: 0.5rem;
  }
  
  .membership-plans_featureLink__HlrCq {
    word-break: break-word;
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .membership-plans_freeFeatureItem__5Kp3U .membership-plans_featureLink__HlrCq {
    font-size: 0.85rem;
  }
}

.membership-plans_loading__240NR, .membership-plans_error__W7ZX8 {
  text-align: center;
  padding: 3rem;
  margin: 2rem 0;
  border-radius: 12px;
  font-size: 1.1rem;
}

.membership-plans_loading__240NR {
  background-color: #f0f8ff;
  color: #0f4c81;
  box-shadow: 0 4px 8px rgba(15, 76, 129, 0.1);
  border-left: 5px solid #0f4c81;
}

.membership-plans_error__W7ZX8 {
  background-color: #fff0f0;
  color: #d32f2f;
  border-left: 5px solid #d32f2f;
  box-shadow: 0 4px 8px rgba(211, 47, 47, 0.1);
}

.PaymentOptionsModal_modalOverlay__ip7kO {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.PaymentOptionsModal_modalContent__xAm3Z {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.PaymentOptionsModal_modalHeader__mJfIw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
}

.PaymentOptionsModal_modalTitle__s2AWI {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
}

.PaymentOptionsModal_closeButton__l1dXS {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.PaymentOptionsModal_closeButton__l1dXS:hover:not(:disabled) {
  background-color: #f5f5f5;
  color: #333;
}

.PaymentOptionsModal_closeButton__l1dXS:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.PaymentOptionsModal_modalBody__qhyjK {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

.PaymentOptionsModal_optionsGrid__c79o7 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.PaymentOptionsModal_optionCard__bd85z {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.PaymentOptionsModal_optionCard__bd85z:hover {
  border-color: #0077b6;
  background-color: #f8f9fa;
}

.PaymentOptionsModal_optionCard__bd85z.PaymentOptionsModal_selected__3lP6W {
  border-color: #0077b6;
  background-color: #e3f2fd;
}

.PaymentOptionsModal_optionCard__bd85z.PaymentOptionsModal_popular__t6VT9 {
  border-color: #ffa726;
}

.PaymentOptionsModal_optionCard__bd85z.PaymentOptionsModal_popular__t6VT9.PaymentOptionsModal_selected__3lP6W {
  border-color: #0077b6;
}

.PaymentOptionsModal_savingsBadge__Jce6F {
  position: absolute;
  top: -8px;
  right: 16px;
  background-color: #ffa726;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
}

.PaymentOptionsModal_optionHeader__ArNit {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.PaymentOptionsModal_radioButton__KtyLx {
  display: flex;
  align-items: center;
}

.PaymentOptionsModal_radioInput__6wIz5 {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.PaymentOptionsModal_optionDetails__YkYOg {
  flex: 1;
}

.PaymentOptionsModal_optionTitle__b4d9i {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.PaymentOptionsModal_optionDescription__PFCyd {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.PaymentOptionsModal_pricing__h_6R_ {
  text-align: right;
}

.PaymentOptionsModal_price__j8TAt {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 2px;
}

.PaymentOptionsModal_originalPrice__5XEtw {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

.PaymentOptionsModal_termsNotice__eaXKI {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 16px;
  margin-top: 16px;
}

.PaymentOptionsModal_termsNotice__eaXKI p {
  margin: 0;
  font-size: 0.9rem;
  color: #856404;
  line-height: 1.4;
}

.PaymentOptionsModal_modalFooter__XEm12 {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #e0e0e0;
  background-color: #f8f9fa;
}

.PaymentOptionsModal_cancelButton__PWEzS {
  padding: 10px 20px;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.PaymentOptionsModal_cancelButton__PWEzS:hover:not(:disabled) {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.PaymentOptionsModal_subscribeButton__lI_7r {
  padding: 10px 20px;
  border: none;
  background-color: #0077b6;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.PaymentOptionsModal_subscribeButton__lI_7r:hover:not(:disabled) {
  background-color: #005a8b;
}

.PaymentOptionsModal_subscribeButton__lI_7r:disabled,
.PaymentOptionsModal_cancelButton__PWEzS:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .PaymentOptionsModal_modalOverlay__ip7kO {
    padding: 10px;
  }
  
  .PaymentOptionsModal_modalContent__xAm3Z {
    max-height: 90vh;
  }
  
  .PaymentOptionsModal_modalHeader__mJfIw,
  .PaymentOptionsModal_modalBody__qhyjK,
  .PaymentOptionsModal_modalFooter__XEm12 {
    padding: 16px;
  }
  
  .PaymentOptionsModal_modalTitle__s2AWI {
    font-size: 1.2rem;
  }
  
  .PaymentOptionsModal_optionCard__bd85z {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .PaymentOptionsModal_optionHeader__ArNit {
    width: 100%;
  }
  
  .PaymentOptionsModal_pricing__h_6R_ {
    align-self: flex-end;
  }
  
  .PaymentOptionsModal_modalFooter__XEm12 {
    flex-direction: column-reverse;
  }
  
  .PaymentOptionsModal_cancelButton__PWEzS,
  .PaymentOptionsModal_subscribeButton__lI_7r {
    width: 100%;
    padding: 12px;
  }
}

/* Auto-renewal section styles */
.PaymentOptionsModal_autoRenewalSection__KMrhU {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.PaymentOptionsModal_checkboxLabel__7d0Dp {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.PaymentOptionsModal_checkbox__4QPe5 {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

.PaymentOptionsModal_checkboxText__Msi_K {
  font-weight: 600;
  color: #333;
  user-select: none;
  font-size: 0.95rem;
}

.PaymentOptionsModal_autoRenewalNote__IM9Fo {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
  padding-left: 1.5rem;
}

.CancellationPolicyModal_modalOverlay__riV73 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.CancellationPolicyModal_modalContent__EQxBC {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.CancellationPolicyModal_modalHeader__vEpou {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
}

.CancellationPolicyModal_modalTitle__gKZub {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.CancellationPolicyModal_closeButton__4jar_ {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.CancellationPolicyModal_closeButton__4jar_:hover {
  background-color: #f5f5f5;
  color: #333;
}

.CancellationPolicyModal_closeButton__4jar_:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.CancellationPolicyModal_modalBody__USH_y {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

.CancellationPolicyModal_planSummary__6QCE9 {
  background-color: #f8f9fa;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.CancellationPolicyModal_planSummary__6QCE9 h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #333;
}

.CancellationPolicyModal_planSummary__6QCE9 p {
  margin: 0;
  color: #666;
}

.CancellationPolicyModal_policyContent__q1KFS {
  margin-bottom: 24px;
}

.CancellationPolicyModal_policyText__Gn445 {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
  white-space: pre-wrap;
  max-height: 300px;
  overflow-y: auto;
}

.CancellationPolicyModal_acceptanceSection__inzqP {
  padding: 16px;
  background-color: #fff8f0;
  border: 2px solid #ffa726;
  border-radius: 6px;
}

.CancellationPolicyModal_checkboxLabel__2Gf6E {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 12px;
}

.CancellationPolicyModal_checkbox__dU6dM {
  margin: 0;
  transform: scale(1.2);
  cursor: pointer;
}

.CancellationPolicyModal_checkboxText__VLqYR {
  flex: 1;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.CancellationPolicyModal_modalFooter__uK7_y {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #e0e0e0;
  background-color: #f8f9fa;
}

.CancellationPolicyModal_cancelButton__Ja12M {
  padding: 10px 20px;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.CancellationPolicyModal_cancelButton__Ja12M:hover:not(:disabled) {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.CancellationPolicyModal_acceptButton__S8otG {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.CancellationPolicyModal_acceptButton__S8otG.CancellationPolicyModal_enabled__nQtnO {
  background-color: #0077b6;
  color: white;
  cursor: pointer;
}

.CancellationPolicyModal_acceptButton__S8otG.CancellationPolicyModal_enabled__nQtnO:hover {
  background-color: #005a8b;
}

.CancellationPolicyModal_acceptButton__S8otG.CancellationPolicyModal_disabled__4DA_d {
  background-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}

.CancellationPolicyModal_cancelButton__Ja12M:disabled,
.CancellationPolicyModal_acceptButton__S8otG:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .CancellationPolicyModal_modalOverlay__riV73 {
    padding: 10px;
  }
  
  .CancellationPolicyModal_modalContent__EQxBC {
    max-height: 90vh;
  }
  
  .CancellationPolicyModal_modalHeader__vEpou,
  .CancellationPolicyModal_modalBody__USH_y,
  .CancellationPolicyModal_modalFooter__uK7_y {
    padding: 16px;
  }
  
  .CancellationPolicyModal_modalTitle__gKZub {
    font-size: 1.3rem;
  }
  
  .CancellationPolicyModal_policyText__Gn445 {
    font-size: 0.85rem;
    padding: 12px;
    max-height: 200px;
  }
  
  .CancellationPolicyModal_modalFooter__uK7_y {
    flex-direction: column-reverse;
  }
  
  .CancellationPolicyModal_cancelButton__Ja12M,
  .CancellationPolicyModal_acceptButton__S8otG {
    width: 100%;
    padding: 12px;
  }
}

.register_container__ZDvLI {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.register_title__sRyfD {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #0f4c81;
  font-size: 2rem;
  font-weight: 700;
}

.register_subtitle__7L21C {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
  font-size: 0.9rem;
}

.register_form__4g4Cp {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register_formGroup__qYZWe {
  display: flex;
  flex-direction: column;
}

.register_formGroup__qYZWe label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.register_formGroup__qYZWe input {
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.register_formGroup__qYZWe input:focus {
  outline: none;
  border-color: #0f4c81;
}

.register_error__bbkN4 {
  background-color: #fee;
  color: #c33;
  padding: 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-align: center;
  border: 1px solid #fcc;
}

.register_button__BA9bk {
  background-color: #0f4c81;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.register_button__BA9bk:hover {
  background-color: #0d3f6d;
}

.register_button__BA9bk:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.register_loginSection__iZ_ly {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.register_loginSection__iZ_ly p {
  margin-bottom: 1rem;
  color: #666;
}

.register_loginButton__yTfVb {
  background-color: transparent;
  color: #0f4c81;
  border: 2px solid #0f4c81;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.register_loginButton__yTfVb:hover {
  background-color: #0f4c81;
  color: white;
}

.register_checkboxLabel__bcBJ7 {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem !important;
  cursor: pointer;
}

.register_checkbox__C97HK {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: scale(1.2);
}

.register_checkboxText__Vy_3L {
  font-weight: 600;
  color: #333;
  user-select: none;
}

.register_checkboxNote__SGeHk {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.register_planSelection__2eAv0 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.register_planOption__QFyAB {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.register_planOption__QFyAB:hover {
  border-color: #0f4c81;
  background-color: #f8f9fa;
}

.register_planOption__QFyAB:has(input:checked) {
  border-color: #0f4c81;
  background-color: #e6f3ff;
}

.register_planRadio__k7k_8 {
  margin: 0.25rem 0 0 0 !important;
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

.register_planDetails__u72rF {
  flex: 1;
}

.register_planHeader__1FhFl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.register_planName__yrW2z {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f4c81;
  margin: 0;
}

.register_planPrice__f_9Yg {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0f4c81;
}

.register_planDescription__CrQS2 {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

.register_planNote__FG_H_ {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
}

