/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}

/* Header */
header {
  background: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-section img {
  height: 80px;
  width: auto;
}

.header-text h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #333;
}

.tagline {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

.logo img {
  height: 100px;
  width: auto;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #0077ff;
}

/* Sections */
section {
  padding: 4rem 0;
}

#hero {
  background: linear-gradient(135deg, #0077ff, #00c6ff);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: white;
  color: #0077ff;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #e0e0e0;
}

/* Mission */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.mission-point {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.mission-point h3 {
  margin-bottom: 1rem;
  color: #0077ff;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  background: #f1f1f1;
  font-size: 0.9rem;
}
