/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #282828;
}

a {
  color: #ff373f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(25,25,25,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(25,25,25,1) 100%);
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(25,25,25,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#191919",GradientType=1);
}

.nav-bar a {
  text-decoration: none;
  color: #ffffff;
  margin: 0 10px;
}

.nav-bar .inner-section-wider {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

.nav-bar nav {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
}

h1 {
  font-size: 60px;
  line-height: 57px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

h2 {
  font-size: 40px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: 150px;
}

.logo img {
  max-height: 40px;
  width: auto;
}

.inner-section, p {
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
}

.inner-section-wider {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

/* Text section */
.text-section {
  padding: 50px 20px;
  text-align: center;
}

.text-section.light {
  color: #ffffff;
  background-color: #282828;
}

.text-section p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
}

.btn.primary {
  background-color: #ff373f;
  color: white;
}

.btn.secondary {
  background-color: white;
  color: #ff373f;
  border: 1px solid #ff373f;
}


.btn:hover {
  text-decoration: none;
  background-color: #b51920;
  cursor: pointer;
}

/* Grid Layout */
.grid-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.logos a {
  display: block;
}

.logos img {
  max-width: 80px;
  height: auto;
}

/* Card */
.card {
  background: #fff;
  border: 1px solid #ddd;
  color: #282828;
  padding: 20px;
  width: 300px;
  text-align: center;
  border-radius: 5px;
}


.card h3 {
  color: #ff373f;
}

.card.pricing {
  width: 300px;
}

.card.pricing .price {
  font-size: 2em;
  margin: 10px 0;
}

.card .btn {
  margin-top: 20px;
}

/* Details and FAQ */
details summary {
  cursor: pointer;
  padding: 10px 0;
  font-weight: bold;
  line-height: 18px;
}

details p {
  padding: 10px 0px 20px 0;
  font-weight: bold;
  line-height: 25px;
  border-bottom: solid 1px #ff373f;
  margin-bottom: 20px;
}

/* Call to Action */
.cta {
  padding: 50px 20px;
  text-align: center;
}

.cta .btn {
  margin-top: 20px;
}

.faq {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.faq details {
  margin: 0px 0px 10px 0px;
}

/* Footer */
footer {
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
}


footer p {
  margin-bottom: 20px;
}

footer nav a {
  margin: 0 10px;
}

form {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  margin: 0 auto;
  padding: 20px;
}

form p {
  margin-bottom: 32px;
}

label {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0px 0px 8px 0px;
  width: 100%;
  text-align: left;
  display: block;
  font-size: 20px;
}

input[type=text], input[type=email], textarea {
  margin: 0px 0px 22px 0px;
  width: calc(100% - 12px);
  text-align: left;
  display: block;
  border: solid 3px #000000;
  padding: 8px 6px;
  font-size: 20px;
}

textarea {
  min-height: 100px;
}

