* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #2d2d2d;
  --accent-color: #4a4a4a;
  --dark-gray: #0a0a0a;
  --medium-gray: #b0b0b0;
  --light-gray: #1e1e1e;
  --white: #ffffff;
  --border-color: #333333;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", sans-serif;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--dark-gray);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--primary-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header.hero-header {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: var(--white);
  padding: 40px 20px;
  max-width: 800px;
  margin: -80px auto 0;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -1px;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

main {
  flex: 1;
  padding: 60px 20px;
}

section {
  max-width: 800px;
  margin: 0 auto 60px;
}

section:last-child {
  margin-bottom: 0;
}

h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--medium-gray);
}

.product-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-top: 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.product-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-content {
  flex: 1;
}

.product-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  background-color: var(--medium-gray);
  color: var(--primary-color);
}

.contact-info {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  color: var(--medium-gray);
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Board Section */
.board-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.board-member {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.board-member:hover {
  background-color: var(--accent-color);
  border-color: var(--medium-gray);
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.board-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-color);
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

.board-member:hover .board-avatar {
  border-color: var(--white);
}

.board-info {
  flex: 1;
  text-align: left;
}

.board-info h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  margin-top: 0;
  color: var(--medium-gray);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.board-member:hover .board-info h3 {
  color: var(--white);
}

.board-info p {
  margin: 0;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 30px 20px;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--medium-gray);
}

.separator {
  color: rgba(255, 255, 255, 0.5);
}

/* Policy Pages */
.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.policy-header {
  text-align: center;
  margin-bottom: 40px;
}

.policy-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.policy-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content h3 {
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-content ul {
  margin-left: 30px;
  margin-bottom: 15px;
}

.policy-content li {
  margin-bottom: 8px;
  color: var(--medium-gray);
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  header.hero-header {
    height: 350px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  main {
    padding: 40px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 5px;
  }

  .separator {
    display: none;
  }
}
