

.site-header {
  display: flex;
  align-items: flex-end;        /* bottom-aligns both logo & nav */
  justify-content: space-between; /* pushes nav to the right */
  padding: 1rem;
}

.logo img {
  display: block; /* prevent inline-image whitespace issues */
 }

.main-nav ul {
  display: flex;
  gap: 1.5rem;    /* space between items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #20a2dc;
  font-size:20px;
}
.site-footer {
  text-align: center;
  padding: 1rem 0;
  color: #666;
  font-size: 0.85rem;
}

.site-footer hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0 0 1rem;
}

.footer-nav ul {
  display: inline-flex;
  gap: 1.5rem;    /* space between items */
  list-style: none;
  margin: 0;
  padding: 0;
  border-style: none;
}


.footer-nav a {
  text-decoration: none;
  color: #20a2dc; 
  border-style: none;
  /* match your header links */
}

.site-footer p 
{
  margin-top: 0.5rem;
  border-style: none;
}

ul.contact-list 
{
  list-style: non; /*remove bullet symbol*/
  display: flex;
  flex-direction: column;      /* vertical stack */
  align-items: stretch;        /* force all items to the same width */
  gap: 1em;                     /* uniform vertical spacing */
  margin: 0;                    /*remove default indent margin*/
  padding: 0;                   /*remove default indent padding*/
  border-style: none;
  padding: 0.75em;
  border: 0px solid #ddd;
  border-radius: 3px;
  border-style: none;
}
 

ul.contact-list li {
  list-style: none;      /* some browsers need this on the LI */
  margin: 0 0 1em;       /* optional: spacing between items */
}

/* more specific: targets only <li> in that exact list */
body ul.contact-list li 
{
  list-style: none; 
  margin: 0 0 1em;
}

h1 {color: blue;}

h2 {color:  #20a2dc;}

h3 {color: red;}

h4 {color: orange;}

div {padding-left: 5px;
padding-right: 5px;}

/*--Form Snippet--*/
/* 1. Center and constrain the form */
form {
  max-width: 500px;      /* or whatever suits your layout */
  margin: 2rem auto;     /* top/bottom spacing + center horizontally */
  padding: 1rem;         /* optional inner padding */
  background: #f9f9f9;   /* optional subtle background */
  border-radius: 6px;    /* soften the edges */
}

/* 2. Make your UL a simple vertical list again */
form ul.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 3. Stack label + field, with uniform spacing */
form ul.contact-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

/* 4. Label styling */
form ul.contact-list label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

/* 5. Inputs & textarea fill the container */
form ul.contact-list input,
form ul.contact-list textarea {
  width: 100%;
  box-sizing: border-box;     /* include padding/border in width */
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.4;
}

/* 6. Make textarea a bit taller */
form ul.contact-list textarea {
  min-height: 120px;
  resize: vertical;           /* allow vertical resize only */
}

/* 7. Style the submit button */
form ul.contact-list button {
  align-self: flex-start;     /* hugs the left edge */
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #20a2dc;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* 8. Button hover state */
form ul.contact-list button:hover {
  background-color: #1b85b8;
}

img.body 
  { margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  table {border-style: none;}