:root{
  --bg:white;         /* near-black for depth */
  --card:#131722;       /* card surface */
  --soft:orange;       /* soft surface */
  --text:black;       /* high contrast text */
  --muted:#b8c0d3;      /* secondary text */
  --brand: #ffcc00;      /* cyan */
  --brand-2:#ffcc00;;    /* mint */
  --accent:#ffd166;     /* warm accent */
  --danger:#ff6b6b;     /* error */
  --ok:#00d68f;         /* success */
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius-2xl: 22px;
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --grid: clamp(16px, 3vw, 24px);
  --w: min(1200px, calc(100% - var(--grid)*2));
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background: 
    var(--bg);
}
a{color:inherit}
.container{width:var(--w); margin-inline:auto}
.btn{
  --btn-bg: linear-gradient(90deg, var(--brand), var(--brand-2));
  --btn-tx: #0b1120;
  border:0; outline:0; cursor:pointer;
  background:var(--btn-bg);
  color:var(--btn-tx);
  padding:14px 20px; font-weight:700; border-radius: 999px;
  letter-spacing:.2px; transition: transform .12s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(90,200,250,.25);
  text-decoration: none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 28px rgba(90,200,250,.35); text-decoration: none;}
.btn.secondary{ background:lightgreen; color:black; border:1px solid rgba(255,255,255,.12); text-decoration: none;}
.btn.tertiary{ background:black; color:white; text-decoration: none; }

/* Header */
header{
  position: sticky; top:0; z-index:50; backdrop-filter: saturate(180%) blur(10px);
  background: orange;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.brand .logo{
  width:34px; height:34px; border-radius:10px; display:grid; place-items:center; 
  background:linear-gradient(135deg,var(--brand),var(--brand-2)); color:#08111a; font-weight:900
}
.nav a{opacity:.9; text-decoration:none; font-weight:600; margin:0 10px}
.nav .cta{display:flex; gap:10px; align-items:center}

/* Hero */
.hero{padding: clamp(40px, 6vw, 80px) 0}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 5vw, 36px); align-items:center}
.kicker{display:inline-flex; align-items:center; gap:10px; font-weight:700; color:var(--muted); background:rgba(255,255,255,.06); padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.1)}
.kicker svg{opacity:.8}
h1{font-size: clamp(32px, 5vw, 56px); line-height:1.05; margin:10px 0 12px}
.sub{font-size: clamp(16px, 2.4vw, 20px); color:var(--muted); max-width: 60ch}

.hero-card{
  background: linear-gradient(180deg, rgba(122, 243, 160, .06), rgba(90,200,250,.05));
  border:1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-2xl);
  padding: clamp(16px, 3vw, 22px);
  box-shadow: var(--shadow);
}
.quote-form{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:12px}
.quote-form label{font-size:12px; color:var(--muted)}
.field{display:flex; flex-direction:column; gap:6px}
.input{background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); color:var(--text); border-radius:12px; padding:14px 12px; outline:none}
.hint{font-size:12px; color:black; font-weight: bold;}
.row{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

.trust{display:grid; grid-template-columns: repeat(4, 1fr); gap:12px; margin-top:18px}
.badge{background:var(--soft); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg); padding:12px; display:flex; align-items:center; gap:10px}
.stars{letter-spacing:2px}

/* Plans */
section{padding: clamp(40px, 7vw, 90px) 0}
.section-title{display:flex; align-items:end; justify-content:space-between; gap:16px; margin-bottom:20px}
.section-title h2{font-size: clamp(24px, 3.6vw, 36px); margin:0}
.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.4vw, 20px)}
.card{background:var(--card); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-2xl); padding:22px; box-shadow: var(--shadow)}
.card.pop{background: linear-gradient(180deg, rgba(90,200,250,.08), rgba(124,243,160,.04)); border-color: rgba(124,243,160,.3)}
.price{font-size:28px; font-weight:800}
.pill{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); font-size:12px; color:var(--muted)}
ul.clean{list-style:none; padding:0; margin:12px 0; display:grid; gap:10px}
ul.clean li{display:flex; gap:10px; align-items:flex-start}
.tick{width:18px; height:18px; border-radius:50%; background:linear-gradient(135deg, var(--brand), var(--brand-2)); display:grid; place-items:center; color:#00151f; font-weight:900}

/* Comparison */
.table-wrap{overflow:auto; border-radius:var(--radius-xl); border:1px solid rgba(255,255,255,.1)}
table{width:100%; border-collapse:collapse; background:var(--soft)}
th,td{padding:14px 12px; text-align:left; border-bottom:1px solid rgba(255,255,255,.06)}
th{position:sticky; top:0; background:#171c28}

/* Testimonials */
.carousel{position:relative}
.slider{display:flex; gap:14px; overflow:hidden}
.t-card{min-width: 320px; flex:0 0 320px; background:var(--card); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-xl); padding:18px}
.controls{display:flex; gap:10px; margin-top:10px}
.icon-btn{width:42px; height:42px; border-radius:999px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.06); color:var(--text)}

/* FAQs */
.faqs{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
details{background:var(--card); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius-xl); padding:14px}
summary{cursor:pointer; font-weight:700}

/* Footer */
footer{border-top:1px solid rgba(255,255,255,.06); background:orange; padding:40px 0; color: black}
.foot-grid{display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:20px}
.legal{opacity:.65; font-size:12px}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .quote-form{grid-template-columns: 1fr}
  .trust{grid-template-columns: 1fr 1fr}
  .cards{grid-template-columns: 1fr}
  .faqs{grid-template-columns: 1fr}
  .foot-grid{grid-template-columns: 1fr 1fr}
}
@media (max-width: 580px){
  .foot-grid{grid-template-columns: 1fr}
}




body { 
  background: white;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

hr {
  border: 1px solid lightgray;
  margin: 20px 0 20px 0;
}

form {  
  font-size: 20px; 
}

input {  
  font-size: 20px;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid black;
  border-radius: 5px;
  font-size: 20px; 
}

label {
  display: block;
  padding: 10px 0 10px 0;
  font-size: 20px; 
}

button {
  cursor: pointer;
  padding: 20px;
  border-radius: 5px;
  border: 0;
  background: #00308F;
  color: white;
  font-weight: bold;
  font-size: 20px; 
}

select {
  padding: 10px;
  border: 2px solid black;
  border-radius: 5px;
  font-size: 20px; 
}

textarea{
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  padding: 20px;
  font-size: 20px;
  border: 1px solid black; 
  border-radius: 10px;
}

a {
  text-decoration: none;
  color: inherit;
}

.bold {
  font-weight: bold;
}

[ng-click] {
  cursor: pointer;
}

.tiny-text {
  font-size: 14px;
}

.create-icon {
  top: 0;
  right: 0;
  display: block;
  position: absolute;
}

.success {
  color: blue;
}

.error {
  color: red;
}

.alert-box {
  background: #E8CFC5;
  padding: 20px;
  border-radius: 10px;
  font-size: 20px;
}

.require-label {
  color: red;
}

.underline {
  margin-bottom: 10px;
  border-bottom: 2px solid lightgray;
}

#logo {
  margin-top: 15px;
  margin-bottom: 5px;
}

#logo img {
  min-height: 25px;
  max-height: 25px;
  vertical-align: middle;
}

.logo-icon {
  color: #00308F;
  vertical-align: middle;
  font-size: 30px;
}

.logo-heading {
  vertical-align: middle;
  font-size: 30px;
}

.logo-caption{
  font-size: 14px;
  font-weight: normal;
  text-align: right;
  margin-top: 5px;
  margin-bottom: 10px;
}




#heading {
  display: table;
  min-width: 100%;
  max-width: 100%;
  min-height: 100px;
  padding: 0 0 0 0;
  margin: 0;
  background: orange;
}

.reduce-heading {
  display: table;
  min-width: 100%;
  max-width: 100%;
  min-height: 25px !important;
  padding: 0 0 0 0;
  margin: 0;
}


#top-menu { 
  min-width: 70%;
  max-width: 70%;
  padding: 0;
  margin: 0 auto;
  display: block;
  text-align: center;
}

#top-menu li { 
  color: black;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  min-width: 18%;
  max-width: 18%;
  padding: 30px 0 0 0;
  margin: 0;
  text-align: center;
}

#mobile-menu { 
  position: absolute;
  top: 0;
  right: 10px;
  display: none;
}

#mobile-menu img { 
  min-width:50px;
  max-width:50px;
}



#footer {
  border-top: 5px solid lightgray;
  display: table;
  min-width: 100%;
  max-width: 100%;
  min-height: 100px;
  padding: 50px 0 0 0;
  margin: 0;
  background: orange;
}


#footer-menu { 
  min-width: 70%;
  max-width: 70%;
  padding: 0;
  margin: 0 auto;
  display: block;
  text-align: center;
}

#footer-menu li { 
  color: black;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  min-width: 18%;
  max-width: 18%;
  padding: 30px 0 0 0;
  margin: 0;
  text-align: center;
}


#logo {
  position: absolute;
  left: 10px;
  top: 0px;
  font-weight: bold;
  font-size: 24px;
  padding: 0px 20px 10px 20px;
}

#my-account-heading {
  position: absolute;
  right: 50px;
  top: 25px;
  font-size: 16px;
}

#my-account-heading li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}

#container { 
  display: table;
  min-width:100%;
  height:auto;
  overflow:scroll;
  padding: 0;
}

 
#loading-small img, #line-graph-loading img, #table-loading img{
  min-width: 60px;
  max-width: 60px;
  margin: 50px 0 50px 0;
}

#main {
  margin-top: 10px;
  background: white;
  min-height:100vh;
  min-width: 68%;
  max-width: 68%;
  float: left;
  vertical-align: text-top;
  margin: 0;
  padding: 0 1% 0 1%;
}

#main-menu {
  display: block;
  padding: 1%;
  text-align: right;
  border-bottom: 2px solid lightgray;
}

#main-menu img {
  width: 15px;
  vertical-align: middle;
}

#main-dashboard {
  display: block;
  padding: 1%;
}


.form-error {
  padding: 20px 0 0 0;
  color: red;
}

.widden {

  min-width: 98% !important;
  background: none !important;
  padding: 0;
  margin: 0;

}

.create {
  position: absolute;
  font-size: 18px;
  top: 30px;
  right: 30px;
  color: dimgray;
}

button.cancel {
  background: lightgray;
  color: black;
}


#brochure-container {
  padding: 1%;
  margin: 0 auto;
  min-width: 68%;
  max-width: 68%;
  border-radius: 10px; 
  font-size: 20px; 
  position: relative;
}




/****** Home ******/
#service-list  {
  text-align: center;
  min-width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

#service-list li {
  display: inline-block;
  min-width: 29%;
  max-width: 29%;
  border: 1px solid black;
  padding: 1% 0  5% 0;
  margin-right: 1.5%;
  margin-bottom: 3%;
  text-align: center;
}

.caption {
  max-width: 50%;
  text-align: center;
  margin: 0 auto;
}

.home-banner {
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
}
 
.home-banner img {
  max-width: 100%;
  max-height: 300px;
}

#home-banner-2 {
  padding: 5px 20px 10px 20px;
  border-radius: 15px;
  border: 1px solid black;
  text-align: center;
}

#home-reviews-box {
  text-align: center;
  margin: 20px 0 0 0;
}

#home-reviews-box img {
  max-height: 50px;
}


#home-how-it-works .underline {
  border-bottom: 1px solid #d4d4d4;
}

#home-how-it-works ul {
  margin: 0; 
  padding: 0;
}

#home-how-it-works li {
  list-style: none;
  text-align: center;
  margin-bottom: 50px;
}

#home-how-it-works h3 {
  text-align: center;
}

#home-how-it-works .vl {
  border-left: 4px solid gray;
  height: 50px;
  width: 0;
  margin: 0 auto;
}

#home-how-it-works span {
  margin-bottom: 5px;
  margin-right: 0px;
  border-radius: 50%;
  background: none;
  border: 3px solid black;
  padding: 5px 10px 5px 10px;
  display: inline-block;
}


#home-form {
  padding: 5px 20px 10px 20px;
  border-radius: 15px;
  background: #c5defa;
  text-align: center;

}

#home-form input {
  min-width: 30%;
  max-width: 30%;
  padding: 15px;
  font-size: 20px;
}


#home-form input {
  min-width: 30%;
  max-width: 30%;
  padding: 15px;
  font-size: 20px;
}

#home-form label {
  font-weight: bold;
  font-size: 20px;
}

#home-form p {
  padding: 10px;
}

#home-why-use-us {
  margin: 50px 0 50px 0;
  padding: 0;
}

#home-why-use-us li {
  display: inline-block;
  list-style: none;
  min-width: 30%;
  max-width: 30%;
  margin: 0;
  margin-right: 2.5%;
  padding: 0;
  font-size: 18px;
  vertical-align: text-top;
  text-align: center;
}


#about-us {
  font-size: 18px;
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}

#contact-us {
  font-size: 18px;
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}

.how-it-works-image {
  text-align: center;
}
.how-it-works-image img {
  max-width: 50%;
}


#about-us-banner {
  text-align: center;
}

#about-us-banner img {
  max-height: 300px;
}

.about-us-content {
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
  min-width: 80%;
  max-width: 80%;
  padding: 1%;
  margin: 0 auto;
  border-radius: 10px;
}

.how-it-works-banner {
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
  min-width: 80%;
  max-width: 80%;
  padding: 1%;
  margin: 0 auto;
  border-radius: 10px;
}

.brochure-tile-section {
  margin-bottom: 20px;
}

.brochure-tile-section img {
  max-height: 300px;
}



.brochure-tile-section .left {
  display: inline-block;
  min-width: 45%;
  max-width: 45%;
  vertical-align: middle;
}

.brochure-tile-section .right {
  display: inline-block;
  min-width: 45%;
  max-width: 45%;
  vertical-align: middle;
}

#enquiry-container {
  padding: 1%;
  margin: 0 auto;
  min-width: 68%;
  max-width: 68%;
  border-radius: 10px; 
  font-size: 20px; 
  position: relative;
}
 

#enquiry-choose-a-service li {
  list-style: none;
  margin-bottom: 10px;
}


#eligibility-container {
  padding: 1%;
  margin: 0 auto;
  min-width: 68%;
  max-width: 68%;
  border-radius: 10px; 
  font-size: 20px; 
  position: relative;
}
 

#eligibility-choose-a-service li {
  list-style: none;
  margin-bottom: 10px;
}


  #enquiry-container .fee-box {
    background: #fffdb1;
    padding: 20px;
    border-radius: 10px;
    font-size: 20px;
  }

  #enquiry-container .fee-price {
    font-weight: bold;
    font-size: 30px;
  }

 

.loading-get-quote img {
  max-height: 100px;
}

.where-address-list {
  padding-bottom: 20px;
}

#payment button {
  background: green;
  cursor: pointer;
  padding: 20px;
  border-radius: 5px;
  border: 0;
  color: white;
  font-weight: bold;
  font-size: 20px; 
}


/***************************** MOBILE ****************************/

#mobile-menu-open {
  display: none;
  min-width: 80%;
  min-height: 100vh;
  position: absolute;
  background: white;
  z-index: 100;
  top: 0;
  padding: 10%;
}

#mobile-menu-open li {
  display: block;
  list-style: none;
  font-size: 24px;
  margin-bottom: 20px;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {

  #main {
    display: block;
    float: none;
  }


  .caption {
    max-width: 90%;
    margin: 0 auto;
  }

  .modal {
    text-align: center;
  }

  .modal input {
    max-width: 100%;
  }

  .modal button {
    font-size: 18px;
    padding: 10px;
  }

  #heading {
    min-height: 70px;
    max-height: 70px;
    border-bottom: 0;
  }

  #footer {
    border-top: 1px solid #00308F;
    min-width: 90%;
    padding: 5% 5% 0 5%;
    display: block;
  }

  #top-menu {
    display: none;
  }

  #footer-menu {
    display: block;
    min-width: 100%;
  }

  #footer-menu li { 
    min-width: 30%;
    font-size: 14px;
    font-weight: normal;
  }

  #mobile-menu {
    top: 10px;
    display: block;
    margin-top: 10px;
  }

  #mobile-menu img {
    min-width: 30px;
    max-width: 30px;
  }

  #logo {
    top: 10px;
    margin: 0;
    padding: 0;
  }

  #logo img {
    min-height: 30px;
    max-height: 30px;
  }

  .logo-icon {
    color: #00308F;
    vertical-align: middle;
    font-size: 40px;
  }

  .logo-heading {
    font-size: 24px;
  }


  #brochure-container {
    margin-top: 10px;
    min-width: 90%;
  }

  #brochure-container h1 {
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  #home-top-icon img {
    height: 50px;
  }

  #home-banner-1 {
    margin-bottom: 40px;
  }

  #home-form  input {
    min-width: 100%;
    max-width: 100%;
  }

  #about-us {
    max-width: 100%;
    font-size: 14px;
  }

  #contact-us {
    max-width: 100%;
  }

  #home-how-it-works h1 {
    margin-bottom: 50px;
  }

  #home-how-it-works p {
    font-size: 12px;
  }

  #home-how-it-works li  {
    margin-bottom: 10px;
  }

  #home-how-it-works li h3  {
    margin-bottom: 10px;
    font-size: 18px;
  }

  
  #home-how-it-works .vl {
    border-left: 4px solid gray;
    height: 50px;
    width: 0;
    margin: 0 auto;
  }

  .how-it-works-image img {
    max-width: 100%;
  }

  #home-why-use-us h3 {
    text-align: center;
  }

  #home-why-use-us li {
    display: block;
    list-style: none;
    min-width: 80%;
    max-width: 80%;
    margin-right: 0;
    font-size: 18px;
    vertical-align: text-top;
    margin-bottom: 30px;
    padding: 5% 10% 5% 10%;
    border: 2px solid #f4f4f4;
  }

  #enquiry-container {
    max-width: 90%;
  }

  #enquiry-container h1 {
    font-size: 30px;
  }

  #enquiry-container h3 {
    text-align: center;
  }

  #enquiry-container input[type=text], #enquiry-container input[type=date], #enquiry-container select {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

 
  .enquiry-apply-box {
    text-align: center;
  }





  #enquiry-container input[type=text] {
    min-width: 94% !important;
    max-width: 94% !important;
    padding: 3%;
    font-size: 20px !important;
  }

  #enquiry-your-details label {
  }



  #service-list {
    text-align: center;
    min-width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  #service-list li {
    display: block;
    min-width: 90%;
    max-width: 90%;
    border: 1px solid black;
    padding: 5% 5% 10% 5%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 5%;
  }

  .brochure-tile-section {
    text-align: center;
  }
     
  .brochure-tile-section .left, .brochure-tile-section .right {
    display: block;
    min-width: 100%;
    max-width: 100%;
  }

  .brochure-tile-section img {
    max-height: inherit;
    min-width: 100%;
    max-width: 100%;
  }

  #home-banner-2 {
    min-width: 90%;
    max-width: 90%;
    padding: 1%;
    margin: 0 auto;
  }
}



.notice {
  background: orange;
  padding: 10px;
  color: black;
}

.alert {
  background: red;
  padding: 10px;
  color: white;
}

img.loading-small {
  min-width: 100px;
  max-width: 100px;
}

.require-field {
  color: red;
}

.form-error { 
  color: red;
}

.homebanner {
  min-width: 100%;
  max-width: 100%;
  text-align: right;
  margin: 20px 0 20px 0;
}

.homebanner .left {
  display: inline-block;
  width: 30%;
  min-width: 30%;
  max-width: 30%;
  text-align: left;
  vertical-align: middle;
}

.homebanner .right {
  display: inline-block;
  width: 60%;
  min-width: 60%;
  max-width: 60%;
  vertical-align: middle;
}


.homebanner img {
  min-width: 90%;
  max-width: 90%;
}


.cta-button {
  background: #ffcc00;
  color: #000;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.cta-button:hover {
  background: #e6b800;
}

.enter-reg-box {
  background: orange;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  display: table;
  min-width: 100%;
}

.enter-reg-box input {
  background: yellow;
  font-size: 30px;
  padding: 10px;
  border: 3px  solid black;
  border-radius: 10px;
  min-width: 50%;
  max-width: 50%;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.initial-loading-container {
  padding: 50px;
  text-align: center;
}

.initial-loading-container img {
  min-height: 300px;
  max-height: 300px;
}



.quote h2 {
}

.quote li {
  font-size: 20px;
  margin: 20px;
  list-style: none;
}

.quote .caption {
  margin: 0 20px 0 20px;
  font-size: 16px;
}

.quote label {
  font-size: 12px;
  display: inline-block;
}

.quote-vehicle-box {
  background:#f9f9f9;
  padding: 10px;
  border-radius: 20px;
  border: 4px solid black;
  margin-bottom: 20px;
}
 
.quote-vehicle-box input {
  font-size: 20px;
  padding: 10px;
  border: 1px solid black;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.quote-vehicle-box select {
  font-size: 16px;
  padding: 10px;
  border: 1px solid black;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.quote-plan-box select {
  font-size: 20px;
  padding: 10px;
  border: 1px solid black;
  border-radius: 10px;
  text-transform: uppercase;
  min-width: 100%;
  text-align: center;
}

.quote-plan-summary {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
}

.coverage-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.coverage-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 700;
  margin: 0 0 .5rem
}

.coverage-table th,
.coverage-table td {
  padding: .65rem .8rem;
  vertical-align: top
  border-radius: 20px;
}

.coverage-table th {
  font-weight: 600;
  background: white;
}

.yes {
  color: orange;
  font-weight: 700
}

.no {
  color: lightgray;
  font-weight: 700
}

.yes::before {
  content: "✓ ";
  font-weight: 800
}

.no::before {
  content: "✕ ";
  font-weight: 800
}
 
.quote-price {
  position: relative;
  border:4px solid orange;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0 0 0;
}

.quote-price h2 {
  font-size: 30px;
}

.quote-price-complete {
  margin: 30px 0 0 0;
}

.quote-personal-details h2 {
  border-bottom: 1px solid black;
  padding:20px;
  margin-bottom: 50px;
}

.quote-personal-details label  {
  display: inline-block;
  font-size: 20px;
  padding-right: 10px;
  min-width: 170px;
  max-width: 170px;
}

.quote-personal-details input[type=text] {
  font-size: 20px;
  padding: 10px;
  border: 1px solid black;
  border-radius: 10px;
  color: black;
}

.quote-plan-final-summary {
  border: 3px solid orange;
  border-radius: 20px;
  padding: 0px 20px 20px 20px;
  margin: 20px;
}

.quote-plan-final-summary li {
  padding: 0 0 20px 0;
  margin: 0;
}


.quote-success {
  font-size: 20px;
  padding: 50px;
  border: 5px solid lightgreen;
  border-radius: 10px;
  color: black;
}



.brochure-bubble {
  color: black;
  border: 1px solid orange;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
