body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(128deg, #8D3B90 0%, #3E143E 100%);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            }
       .container {
            background-color: #FFF;
            padding: 40px 50px;
            border-radius: 12px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
            text-align: center;
            width: 100%;
            max-width: 500px;
        }
        h2 { color: #2c3e50; margin-bottom: 20px; }
        p { font-size: 1.1em; color: #34495e; margin-bottom: 20px; }
       .date-option {
          display: flex;
          align-items: center;
          gap: 10px; /* optional: clean spacing between radio and text */
          color: var(--base-foreground, #393D40);
          font-size: 14px;
          font-family: 'Effra', Arial, sans-serif;
          font-weight: 400;
          line-height: 20px; /* slightly bigger to help vertical alignment */
          word-wrap: break-word;
          text-align: left;
        }
        .date-option input[type="radio"] {
            accent-color: #8D3B90; /* Modern browsers will use this for the radio button color */
            /* For custom appearance: */
            border: 2px solid #8D3B90;
            /* Remove default margin if not needed */
            margin-right: 10px;
        }
        input[type="submit"] {
            color: var(--base-primary-foreground, #FCF6FD);
            font-size: 14px;
            font-family: 'Effra', Arial, sans-serif;
            font-weight: 400;
            line-height: 20px;
            word-wrap: break-word;
            /* You can keep or adjust these as needed: */
            margin-top: 25px;
            padding: 12px 24px;
            background-color: #8D3B90; /* Example: match your primary color if desired */
            border: none;
            border-radius: 9999px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        input[type="submit"]:hover {
            background-color: #6a2d6a; /* Slightly darker for hover effect */
        }

.selected-date {
    background-color: #e6ccff; /* Light purple */
    border-radius: 8px;
    padding: 8px 12px;
    transition: background-color 0.2s;
}
.banner-container {
  display: flex;  
  align-items: center; 
  justify-content: center;
  background-color: white;
   }
   
.bannar{
    width: 150px; 
    height: 75px; 
    top :30px; 
    bottom : 15px;
}

.error-message {
    color: var(--base-foreground, #393D40);
    font-size: 20px;
    font-family: 'Effra', Arial, sans-serif;
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
}

.alternate-options {
    background: #f9f9f9;
    border: 1px solid #cfd8dc;
    padding: 1em;
    margin-top: 1em;
    border-radius: 6px;
}
.alternate-options ul {
    margin: 0.5em 0 0 1.5em;
}
h2 {
    color: var(--base-foreground, #393D40);
    font-size: 30px;
    font-family: 'Effra', Arial, sans-serif;
    font-weight: 700;
    line-height: 36px;
    word-wrap: break-word;
}
.h4-black {
    color: var(--base-foreground, #393D40);
    font-size: 20px;
    font-family: 'Effra', Arial, sans-serif;
    font-weight: 700;
    line-height: 28px;
    word-wrap: break-word;
}

.h4-regular {
    color: var(--base-foreground, #393D40);
    font-size: 20px;
    font-family: 'Effra', Arial, sans-serif;
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
}
.date-option-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-4, 16px); /* This sets the space between each date option */
    align-self: stretch;
}
.contact-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;  /* horizontally center children */
}
.contact-list li {
  margin: 8px 0;
}
.contact-list li a {
  color: #8D3B90;             /* Base primary color for links */
  text-decoration: underline; /* Optional for accessibility */
}
.custom-heading {
  color: var(--base-foreground, #393D40);
  font-size: 30px;
  font-family: 'Effra', sans-serif;
  font-weight: 700;
  line-height: 36px;
  word-wrap: break-word;
}
.thank-you-text {
  color: var(--base-foreground, #393D40);
  font-size: 20px;
  font-family: 'Effra', sans-serif;
  font-weight: 400; /* Normal weight */
  line-height: 28px;
  word-wrap: break-word;
}
.account-number {
  color: var(--base-foreground, #393D40);
  font-size: 20px;
  font-family: 'Effra', sans-serif;
  font-weight: 700;
  line-height: 28px;
  word-wrap: break-word;
}
.contact-item .icon {
  margin-right: 4px;
  font-size: 1.2em;
  vertical-align: middle;
}
.phone-link {
  color: #8D3B90;
  text-decoration: underline;
}
