:root {
  --color-primary: #0a2540; /* Dark navy from logo */
  --color-accent: #f0c040; /* Yellow accent from logo */
  --color-bg: #f9f6f0; /* Off-white background */
  --color-light: #ffffff;
  --color-muted: #555555;
}

/* RESET & BASE */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Segoe UI', sans-serif; color: var(--color-primary); background: var(--color-bg); line-height:1.6; }
.container { width: 90%; max-width: 1200px; margin: auto; }
a { text-decoration: none; color: inherit; }

/* HEADER */
.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-light);
  border-bottom: 1px solid var(--color-primary);
  padding: 20px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
}
.nav-list {
  display: flex;
  gap: 10px;
}
.nav-list a {
  padding: 8px 16px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.nav-list a:hover {
  background: var(--color-primary);
  color: var(--color-light);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.subtitle { font-size: 1rem; color: var(--color-muted); }

/* SECTION TITLES */
.section { padding: 60px 0; }
.section--light { background: var(--color-light); }
.section--accent { background: var(--color-accent); }
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--color-primary);
}

/* PROFILE CARD */
.profile-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
.card-media, .card-content { flex: 1 1 280px; }
.card-media img { width: 100%; border-radius: 8px; }
.card-content { padding: 20px; background: var(--color-light); border-radius: 8px; }

/* VISION & MISSION */
.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.vision-mission > div { flex: 1 1 280px; background: var(--color-light); padding: 20px; border-radius: 8px; }

/* PORTFOLIO */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.portfolio-card {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-light);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
}
.portfolio-card img { width: 100%; border-radius: 4px; margin-bottom: 15px; }
.portfolio-card h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  text-align: center;
}

/* MESSAGE US */
.message-container { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; }
.message-form-wrapper, .message-info { flex: 1 1 300px; background: var(--color-light); padding: 20px; border-radius: 8px; }
.message-form-wrapper form { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
input, textarea {
  padding: 10px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  font-size: 1rem;
}
.radio-group { display: flex; gap: 20px; }
.btn {
  padding: 12px;
  background: var(--color-primary);
  color: var(--color-light);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size:1rem;
}
.btn:hover { background: var(--color-primary); opacity: 0.9; }
.message-info pre { white-space: pre-wrap; font-family: inherit; color: var(--color-primary); }

/* FOOTER */
.site-footer {
  background: var(--color-light);
  border-top: 1px solid var(--color-primary);
  text-align: center;
  padding: 20px 0;
  font-size: .9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header .container { flex-direction: column; }
  .nav-list { justify-content: center; }
  .profile-card, .message-container, .vision-mission { flex-direction: column; align-items: center; }
}
/* RESET & BASE */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Segoe UI', sans-serif; color: #333; line-height:1.6; }
.container { width: 90%; max-width: 1200px; margin: auto; }
a { text-decoration: none; color: inherit; }

/* HEADER */
.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0056b3;
}
.nav-list {
  display: flex;
  gap: 10px;
}
.nav-list a {
  padding: 8px 16px;
  border: 1px solid #0056b3;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.nav-list a:hover {
  background: #0056b3;
  color: #fff;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { font-size: 1.5rem; font-weight: bold; color: #0056b3; }
.nav-list { display: flex; gap: 10px; }
.nav-list a { padding: 8px 16px; border: 1px solid #0056b3; border-radius: 4px; transition: background 0.3s, color 0.3s; }
.nav-list a:hover { background: #0056b3; color: #fff; }

/* HERO */
.hero { background: linear-gradient(135deg, #dfe9f3 0%, #ffffff 100%); padding: 80px 0; text-align: center; }
.hero-content { display: flex; flex-direction: column; align-items: center; }
.hero-content h1 { font-size: 2.5rem; margin-bottom: 10px; color: #0056b3; }
.subtitle { font-size: 1rem; color: #555; }

/* SECTION TITLES */
.section { padding: 60px 0; }
.section--light { background: #fafafa; }
.section--accent { background: #e6f2ff; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; color: #0056b3; }

/* PROFILE CARD */
.profile-card { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: flex-start; }
.card-media, .card-content { flex: 1 1 280px; }
.card-media img { width: 100%; border-radius: 8px; }
.card-content { padding: 20px; }

/* VISION & MISSION */
.vision-mission { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.vision-mission > div { flex: 1 1 280px; }

/* PORTFOLIO */
.portfolio-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.portfolio-card { flex: 1 1 250px; display: flex; flex-direction: column; align-items: center; background: #fff; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); padding: 20px; }
.portfolio-card img { width: 100%; border-radius: 4px; margin-bottom: 15px; }
.portfolio-card h3 { font-size: 1.1rem; color: #0056b3; text-align: center; }

/* MESSAGE US */
.message-container { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; }
.message-form-wrapper, .message-info { flex: 1 1 300px; }
.message-form-wrapper form { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
input, textarea { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
.radio-group { display: flex; gap: 20px; }
.btn { padding: 12px; background: #0056b3; color: #fff; border: none; border-radius: 4px; cursor: pointer; font-size:1rem; }
.btn:hover { background: #004494; }
.message-info { background: #fff; border: 1px solid #ccc; border-radius: 4px; padding: 20px; }
.message-info pre { white-space: pre-wrap; font-family: inherit; }

/* FOOTER */
.site-footer { background: #fff; border-top: 1px solid #eee; text-align: center; padding: 20px 0; font-size: .9rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header .container { flex-direction: column; }
  .nav-list { justify-content: center; }
  .profile-card, .message-container, .vision-mission { flex-direction: column; align-items: center; }
}