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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-container {
  min-height: 100vh;
  background: white;
}

/* Hero Section */
.hero-section {
  padding: 0 80px;
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  color: white;
}

.nav-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #6ee7b7;
}

.hero-text {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-label {
  color: #6ee7b7;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  max-width: 48rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 42rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .nav-links {
    display: none;
  }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-small {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Titles */
.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.125rem;
  color: #374151;
  max-width: 48rem;
  line-height: 1.75;
}

/* Commitment Section */
.commitment-section {
  padding: 5rem 80px;
  background: white;
}

.commitment-header {
  margin-bottom: 4rem;
}

.commitment-header .section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .three-col-grid {
    grid-template-columns: 1fr;
  }
}

.col-item {
  display: flex;
  flex-direction: column;
}

.col-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 4px solid #10b981;
}

.col-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.placeholder-gradient-1 {
  background: url('pexels-moose-photos-170195-1036641.jpg');
  background-size: cover;
}

.placeholder-gradient-2 {
  background: url('pexels-rdne-7648252.jpg');
  background-size: cover;
}

.placeholder-gradient-3 {
  background: linear-gradient(to bottom right, #d1fae5, #99f6e4);
}

.placeholder-gradient-4 {
  background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
}

.placeholder-gradient-5 {
  background: linear-gradient(to bottom right, #fae8ff, #f5d0fe);
}

.col-text {
  color: #374151;
  margin-bottom: 1rem;
}

.roadmap-box {
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 0.5rem;
}

.roadmap-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.roadmap-text {
  color: #374151;
  margin-bottom: 1.5rem;
}

.roadmap-button {
  background: #059669;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.roadmap-button:hover {
  background: #047857;
}

/* Initiatives Section */
.initiatives-section {
  padding: 5rem 80px;
  background: #f9fafb;
}

.initiatives-intro {
  margin-bottom: 3rem;
}

.four-col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .four-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .four-col-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Safety Section */
.safety-section {
  padding: 5rem 80px;
  background: white;
}

.safety-intro {
  margin-bottom: 3rem;
  max-width: 48rem;
}

.tab-bar {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #6b7280;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-button:hover {
  color: #059669;
  border-bottom-color: #059669;
}

.tab-button.active {
  color: #059669;
  border-bottom-color: #059669;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }
}

.two-col-item {
  display: flex;
  flex-direction: column;
}

.two-col-image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.two-col-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.two-col-text {
  color: #374151;
  margin-bottom: 1rem;
}

/* Resources Section */
.resources-section {
  padding: 5rem 80px;
  background: #f9fafb;
}

.resources-grid {
  margin-bottom: 3rem;
}

.resource-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.resource-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.resource-image {
  width: 100%;
  height: 12rem;
}

.resource-content {
  padding: 1.5rem;
}

.resource-label {
  font-size: 0.875rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resource-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.resource-description {
  font-size: 0.875rem;
  color: #6b7280;
}

.resources-link {
  text-align: center;
}

.link-button {
  color: #059669;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.link-button:hover {
  color: #047857;
}

/* Reports Section */
.reports-section {
  padding: 5rem 80px;
  background: white;
}

.report-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: border-color 0.3s;
}

.report-card:hover {
  border-color: #10b981;
}

.report-cover {
  width: 100%;
  height: 10rem;
  background: linear-gradient(to bottom right, #059669, #047857);
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-year {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.report-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.report-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.report-link {
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.report-link:hover {
  color: #047857;
}

/* Contact Section */
.contact-section {
  padding: 5rem 80px;
  background: #f9fafb;
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.form-note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .safety-section{
    padding: 80px 0;
  }

  .reports-section{
    padding: 80px 0;
  }

  .contact-section{
    padding: 80px 0;
  }

  .commitment-section{
    padding: 80px 0;
  }

  .resources-section{
    padding: 0 0;
  }

  .hero-section{
    padding: 0 0;
  }

  .initiatives-section{
    padding: 0 0;
  }
  .tab-bar{
    flex-wrap: wrap;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #374151;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.form-textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: #059669;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: #047857;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
