body {
  font-family: "Open Sans", Arial, sans-serif;
  margin: 0;
  color: #294c58;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Header */
header {
  background: #f8f8f8;
  border-bottom: 2px solid #fa5c00;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.logo {
  height: 160px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: #294c58;
  font-weight: 600;
}
nav a:hover,
nav a.active {
  color: #fa5c00;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #fff8f2, #ffffff);
  padding: 60px 20px;
}
.hero-text {
  flex: 1;
  padding-right: 20px;
}
.hero h1 {
  color: #fa5c00;
  font-size: 2.2rem;
}
.hero-image img {
  max-width: 350px;
  border-radius: 8px;
}
.btn {
  display: inline-block;
  background: #fa5c00;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
}
.btn:hover {
  background: #f28b00;
}

/* General Sections */
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.intro {
  text-align: center;
  padding: 40px 0;
}
.intro h2 {
  color: #fa5c00;
}
.iacp img {
  justify-content: center
  margin-top: 15px;
  height: 50px;
}

/* Footer */
footer {
  background: #294c58;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
footer a {
  color: #f28b00;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image img {
    margin-top: 20px;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
.page-title {
  background: #fa5c00;
  color: white;
  padding: 30px 0;
  text-align: center;
}
.profile {
  max-width: 350px;
  border-radius: 6px;
  float: right;
  margin: 10px 0 20px 20px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 20px 0;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
.contact-form button {
  width: fit-content;
}
.resources {
  padding: 40px 0;
}
.resources article {
  margin-bottom: 40px;
  border-left: 4px solid #fa5c00;
  padding-left: 20px;
}
.resources h2 {
  color: #fa5c00;
  margin-bottom: 10px;
}
.resources p {
  margin-top: 0;
}
.policy {
  padding: 40px 0;
}
.policy h2 {
  color: #fa5c00;
  margin-top: 40px;
}
.policy a {
  color: #fa5c00;
}
.policy a:hover {
  text-decoration: underline;
}
/* Accessibility & Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #294c58;
  color: white;
  text-align: center;
  padding: 10px 20px;
  z-index: 1000;
  font-size: 0.9rem;
}
.cookie-banner p {
  display: inline-block;
  margin: 0 10px 0 0;
}
.cookie-banner a {
  color: #f28b00;
  text-decoration: underline;
}
.btn.small {
  font-size: 0.85rem;
  padding: 6px 12px;
  margin-left: 10px;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #fa5c00;
  color: white;
  padding: 8px 12px;
  z-index: 10000;
  border-radius: 3px;
  text-decoration: none;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 10px;
}
