:root {
  --primary: #009688;      /* Teal */
  --primary-dark: #00695c; /* Deep teal */
  --accent: #4db6ac;       /* Lighter accent teal */
  --neutral-light: #f5f5f5;
  --neutral-dark: #212121;
  --text: #333333;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background-color: var(--neutral-light);
  color: var(--text);
  line-height: 1.6;
}

/* Header & nav */

header {
  background-color: var(--primary-dark);
  text-align: center;
  padding: 1.2rem 0 1rem 0;
}

header img {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto;
}

nav {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  transition: background-color 0.2s;
  font-size: 0.98rem;
}

nav a:hover {
  background-color: var(--accent);
}

/* Main content */

main {
  max-width: 1000px;
  background-color: white;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}

.text {
  flex: 3;
  min-width: 280px;
}

.photo {
  flex: 1;
  text-align: center;
}

.photo img {
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

h1 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

h2 {
  color: var(--primary-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

ul {
  padding-left: 1.2rem;
}

a {
  color: var(--primary-dark);
}

a:hover {
  text-decoration: underline;
}

/* Footer */

footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 1.5rem 1rem 2rem 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 1rem;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-contact {
  text-align: right;
  font-size: 0.9rem;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Disclaimer in footer */

.footer-disclaimer {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size: 0.85rem;
  line-height: 1.5;
  color: #ffffff;
}

.footer-disclaimer p {
  margin: 0;
  padding-top: 0.5rem;
}

/* Contact form */

.contact-intro {
  margin-bottom: 1rem;
}

form.contact-form label {
  font-weight: 600;
  display: block;
  margin-top: 1rem;
}

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

form.contact-form textarea {
  height: 150px;
  resize: vertical;
}

form.contact-form button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  margin-top: 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}

form.contact-form button:hover {
  background-color: var(--accent);
}

/* Responsive */

@media (max-width: 600px) {
  .content {
    flex-direction: column;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact {
    text-align: left;
  }
}
/* Honeypot field: hide from users, bots still see it in HTML */
.hp-field {
  display: none;
}

/* Anti-spam block styling */
.antispam {
  margin-top: 1rem;
}

.antispam label {
  font-weight: 600;
}
