main {
    background-color: var(--bg-color);
}

.service-price {
    display: flex;
    justify-content: space-between;
}

.service-choice {
    width: calc(100% - 2rem);
    margin: 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 0.5rem;
    box-sizing: border-box;
    padding: 1rem;
}

.summary-wrapper {
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 1rem;
}

.summary {
    border: 1px solid var(--bg-color);
    border-radius: 0.5rem;
    padding: 1rem;
    box-sizing: border-box;
}

.service-choice h2 {
    margin: 0 0 1rem 0;
}

.service-choice p {
    padding-bottom: 1em;
}

.veteran {
    text-align: center;
}

.veteran-assertion {
    padding-top: 1em;
}

.stone-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.stone-types h4 {
    text-align: center;
}

.selectable {
    padding: 0.5rem;
    display: block;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    border: 3px solid transparent; /* Reserve space for border */
    border-radius: 0.5rem;
    box-sizing: border-box;
}

.stone-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 0.5rem;
}

.total-price {
    display: flex;
    justify-content: space-between;
}

.total-price h2 {
    margin: 0;
}

.town-content {
    display: flex;
}

.town-content h4 {
    margin: 0 1rem 0 0;
}

.selectable:hover {
    border-color: #59c7fb;
    background-color: rgba(255, 255, 255, .1);
}

.selected {
    border-color: var(--brand-color);
    background-color: rgba(255, 255, 255, .1);
}

.selected:hover {
    border-color: var(--brand-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin: 0 auto;
    min-width: 340px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    margin: 0.5rem;
    border: 1px solid #bbb;
    border-radius: 0.5rem;
    font-size: 1rem;
    resize: none;
  }
  
  .contact-form input {
    width: 100%;
  }
  
  textarea {
    width: 100%;
  }
  
  .radio-wrapper {
    display: flex;
    align-items: center;
    gap: 1em;
    margin: 0 auto;
  }
  
  .radio-group {
    display: flex;
    gap: 1em;
  }
  
  .radio-group label {
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-weight: normal;
    cursor: pointer;
  }
  
  .prefer {
    width: 35%;
  }
  
  h6 {
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0;
  }