/* Base */
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  color: #111;
}

.wrap{
  max-width: 900px;
  margin: 0 auto;
  padding: 22px;
}

header{
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

nav a{
  margin-right: 12px;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
  color: #111;
}

h1{ margin: 12px 0 6px; }

.card{
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px;
  margin: 12px 0;
}

small,
.muted{ color: #555; }

/* Forms */
label{
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

input,
textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-top: 6px;
  box-sizing: border-box;
}

button{
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #111;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* Section images */
.section-image{
  margin-top: 20px;
  text-align: center;
}

.section-image img{
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

/* Footer layout */
.site-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 20px 0 40px;
  border-top: 1px solid #eee;
  margin-top: 28px;
  color: #555;
}

.footer-left{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-right{
  text-align: right;
}

/* Only style the legal links on the left */
.footer-left a{
  color: #555;
  text-decoration: none;
}

.footer-left a:hover{
  text-decoration: underline;
}

/* Facebook button */
.fb-button{
  display: inline-block;
  background: #1877f2;
  color: #fff;              /* ensure white */
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

.fb-button:hover{
  background: #1664d9;
  color: #fff;              /* keep white on hover */
}

/* Responsive footer (stack on mobile) */
@media (max-width: 600px){
  .site-footer{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right{
    text-align: left;
    margin-top: 10px;
  }
}
