:root {
    --orange:    #f58220;
    --black:     #424242;
    --gray-light: #f2f2f2;
    --white:     #ffffff;
  }
  
  .pledge-section {
    background: var(--gray-light);
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .pledge-container {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .pledge-badge {
    display: block;
    margin: 0 auto 1rem;
    width: 140px;
    height: auto;
  }
  
  .pledge-title {
    font-size: 1.75rem;
    color: var(--black);
    margin: 0 0 0.5rem;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: #f58220 4px solid;
  }
  
  
  #alert {
    min-height: 1em;
    color: red;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  
  .pledge-text {
    position: relative;
    color: #424242;
    /* background: var(--white); */
    /* border-left: 4px solid var(--orange); */
    padding: 1rem;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

    .pledge-text::after {
        content: "”";
        position: absolute;
        bottom: -15.5rem;
        right: -1rem;
        font-size: 17rem;
        color: rgb(0 0 0 / 5%);
    }

    .pledge-text::before {
        content: "“";
        position: absolute;
        bottom: -10.5rem;
        right: 24rem;
        font-size: 17rem;
        color: rgb(0 0 0 / 5%);
    }
    

    /* replace the `content` with the opposite quote mark as the after text */

  
  .pledge-form .form-group {
    text-align: left;
    margin-bottom: 1rem;
  }
  
  .pledge-form label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    color: var(--black);
  }
  
  .pledge-form input[type="text"],
  .pledge-form input[type="email"] {
    width: 95%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: var(--white);
  }
  
  .form-check-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .italics {
    font-style: italic;
  }
  
  .btn--orange {
    display: block;
    /* width: 100%; */
    max-width: 300px;
    margin: 1rem auto 0;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
        max-width: 300px;
  }

  .btn {
    transition: all 0.3s ease;
  }
  
  .toggle-disabled:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .opacity-75 {
    opacity: 0.75;
  }
  
  .pledge-footer {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #666;
  }
  
  .d-none {
    display: none !important;
  }
  
  .w-100 {
    width: 100% !important;
  }
  