/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

header h1 {
    color: orange;
    font-size: 1.6rem;
}

header h1 span {
    color: white;
}

header img {
    max-width: 100%;
    display: block;
    height: 80px;
}

.pcmenu {
    display: flex;
    gap: 25px;
}

.pcmenu a {
    color: #0B1D39;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.pcmenu a:hover {
    color: orange;
}

.bars {
    display: none;
    cursor: pointer;
}

#mobile-menu {
    display: none;
    flex-direction: column;
    background: #0B1D39;
}

#mobile-menu a {
    color: white;
    padding: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#mobile-menu a:hover {
    background: orange;
}

.about-hero {
  background: #f9f9f9;
  padding: 60px 0;
  background-image: url("https://i.ibb.co/wr7dW0ND/about.avif");
  background-size: cover;
}

.about-hero h2 {
  color: orange;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: center;
  color: white;
}

.mission-values {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.mission, .values {
  flex: 1 1 300px;
}

.mission h3, .values h3 {
  color: orange;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.values ul {
  list-style: disc inside;
}

.values li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

h2 {
  text-align: center;
  color: #005a87;
  font-size: 2rem;
  margin-bottom: 15px;
}


@media (max-width: 1024px) {
    .pcmenu { 
        display: none; 
    }
    .bars { 
        display: block; 
        color: #005a87; 
        font-size: 28px; 
    }
    .about-hero h2 {
        font-size: 1.8rem;
    }
    .mission-values {
        flex-direction: column;
        gap: 0px;
    }
}