.yanone-kaffeesatz-Title {
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}

.tagline {
  color: #272f51;
}

.logo {
  width: 90vw;
  max-width: 600px;
  height: auto;
  margin-bottom: 1rem;
}

.successImage {
  width: 45vw;
  max-width: 450px;
  height: auto;
  margin-bottom: 1rem;
}

.successMessage {
  font-size: 1.2rem;
  color: #272f51;
  text-align: center;
  margin-top: 1rem;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  border-bottom: 3rem;
  border-radius: 500px;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: Arial, sans-serif;
  background: #d0fff6;
  color: #272f51;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-x: hidden;
}

/* Header */
header {
  background: #06c8a1;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #d0fff6;
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); */
}

header p {
  font-size: 1rem;
}

p {
  margin: 1rem 0;
  color: #272f51;
}

blockquote {
  border-left: 4px solid #06c8a1;
  background-color: white;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-style: italic;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  border-radius: 4px;
  position: relative;
}

blockquote::before {
  content: "“";
  font-size: 2.5rem;
  position: absolute;
  left: 10px;
  top: 0px;
  color: #06c8a1;
}

blockquote::after {
  content: "”";
  font-size: 2.5rem;
  position: absolute;
  right: 10px;
  bottom: -10px;
  color: #06c8a1;
}

blockquote footer {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-style: normal;
  color: #555;
  text-align: right;
}

.qualifications {
  list-style: disc inside;
  padding-left: 2rem;
  margin: 1rem 0;
  color: #333;
  font-size: 1rem;
  list-style-position: outside;
}

.qualifications li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}


/* Main Container */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
}

section {
  width: 100%;
  max-width: 800px;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #06c8a1;
  padding-bottom: 0.25rem;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

label {
  margin-top: 1rem;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 0.25rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #06c8a1;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background-color: #272f51;
}


.button-container {
  text-align: center;
}

.call-button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: #06c8a1;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.call-button:hover,
.call-button:focus {
  background-color: #357ab8;
}

.nav-button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: #d0fff6;
  color: #272f51;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.nav-button:hover,
.nav-button:focus {
  color: #d0fff6;
  background-color: #272f51;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

/* Feedback Text */
#formStatus {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: green;
}

/* Footer */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #444;
  width: 100%;
}

/* Responsive Enhancements */
@media (min-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  button {
    width: auto;
    align-self: flex-start;
  }
}

fieldset {
  border: 1px solid #d0fff6;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0px;
}