*{
  margin:0px;
  padding:0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --red:#7d1416;
  --lightblue:#40c0c9;
  --gray:#4a4a4a;
  --medgray:#d6d6d6;
  --black: #0a0a0a;
  --blue:#002e51;
  --lightgray:#f5f5f5;
  --darkblue:#002542;
}

body {
  font-family: "graphie", sans-serif;
  /*  accent-color*/
  color: var(--red); 
/*  body color */
  color: white;
  background: var(--blue);
  font-size: 17px;
  line-height: 1.5em;
  margin: 0;
}

h1, h2, h3, h4{
font-family: 'graphie', sans-serif;
}

h1{
  line-height: 1.3em;
  font-size: 2.5em;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

h2, h3, h4{
  letter-spacing: 1px;
}

p, h2, h3, h4 {
  margin-bottom: 20px;
  margin-top: 0px;
}

h2{
  letter-spacing: 3px;
  text-transform: uppercase;
}

h3{
  font-size: 1.33em;
  text-transform: uppercase;
  font-weight: 900;
}

a{
  text-decoration: none;
  transition: .2s;
  color: inherit;
}

a.phone {
  font-size:18pt;
  display:block;
  text-align:center;
}

.content{
  padding:80px 20px;
}

.container{
  max-width: 1100px;
  widows: 100%;
  margin:0 auto;
  position: relative;
}

#thank-you-content{
  text-align: center;
  padding-top:60px;
}

#form-logo{
  padding-bottom: 0px;
}

#form-logo img{
  margin:0 auto;
  width: 300px;
  height: auto;
  display: block;
}

#form-body{
  padding-top:40px;
}

form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 40px auto;
}

form h2 {
  margin-bottom: 30px;
  color: var(--lightblue);
  font-weight: 900;
}

hr{
  margin:20px 0 40px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--darkblue);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--medgray);
  border-radius: 4px;
  margin-bottom: 25px;
  font-size: 16px;
  font-family: inherit;
  background: var(--lightgray);
  color: var(--black);
  transition: border 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input[type="file"] {
  margin-bottom:20px;
}

button,
input[type="submit"] {
  background: var(--lightblue);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'graphie', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top:20px;
  font-weight: bold;
}

button:hover,
input[type="submit"]:hover {
  background: var(--darkblue);
}

@media (max-width: 768px) {
  form {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2em;
  }

  input, select, textarea {
    font-size: 15px;
  }
}
