:root{
  --gold: #f4b400;   /* logo/gold */
  --blue: #0b53b8;   /* deep blue vertical block */
  --red:  #9b1f1f;   /* header red */
  --muted: #f7f6f4;
  --text: #2b2b2b;
  --card-border: #f2e6d9;
  --max-width: 1100px;
}

/* Basic reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background:var(--muted);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

.container {
  width: unset;
  max-width:var(--max-width);
  margin:40px auto;
  padding:28px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 30px rgba(10,20,40,0.08);
  overflow:hidden;
}

header{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
}

/* logo box */
.logo{
  width:84px;
  height:84px;
  background:var(--blue);
  border-radius:8px;
  display:grid;
  place-items:center;
  box-shadow:inset 0 -6px 0 rgba(0,0,0,0.04);
}

.brand h1{
  margin:0;
  font-size:18px;
  line-height:1;
  letter-spacing:0.6px;
  font-weight: bold;
}
.brand a {
  color:var(--text);
  text-decoration: none;
}
.brand p{
  margin:0;
  color:rgba(0,0,0,0.6);
  font-size:13px;
  margin-top:4px;
}

/* top layout: image + right brand card */
.top{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:28px;
  align-items:start;
}

.hero{
  background: #f3f6f9;
  border-radius:10px;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:220px;
  overflow:hidden;
}
.hero img{
  width:100%;
  height:auto;
  border-radius:8px;
  object-fit:cover;
  display:block;
}

/* right blue card with logo and short text */
.side-card{
  background:var(--blue);
  color:#fff;
  padding:18px;
  border-radius:10px;
  min-height:220px;
  display:flex;
  flex-direction:column;
  gap:12px;
  box-shadow: 0 6px 18px rgba(11,83,184,0.12);
}
.side-card .logo-small{
  width:56px;height:56px;background:transparent;border-radius:6px;display:flex;align-items:center;justify-content:center;
}
.side-card h3{ margin:0; font-size:20px; letter-spacing:0.6px; font-weight: bold;}
.side-card p{ margin:0; font-size:13px; line-height:1.4; opacity:0.95; }

/* COMPANY PROFILE title */
.title{
  display:flex;
  gap:18px;
  align-items:baseline;
  margin-top:20px;
  margin-bottom:12px;
  flex-wrap:wrap;
}
.title h2{
  margin:0;
  font-size:48px;
  color:var(--red);
  line-height:0.9;
  letter-spacing:1px;
  font-weight:800;
}
.title h3{
  margin:0;
  font-size:38px;
  color:var(--blue);
  font-weight:800;
  line-height:0.9;
}

/* profile body + two-column lower area */
.profile{
  margin-top:8px;
  font-size:15px;
  color:rgba(0,0,0,0.8);
  max-width:780px;
}

.lower{
  margin-top:26px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}

.photo-card{
  background: linear-gradient(180deg,#f7fbff 0%, #fff 60%);
  border-radius:10px;
  padding:12px;
  display:flex;
  gap:12px;
  align-items:center;
  border:1px solid var(--card-border);
}
.photo-card img{
  width:120px;
  height:90px;
  object-fit:cover;
  border-radius:8px;
  flex-shrink:0;
}
.photo-card .caption{
  font-size:13px;
  color:rgba(0,0,0,0.8);
}

/* vision/mission cards */
.card{
  background:#fff;
  border-radius:10px;
  padding:18px;
  border:1px solid var(--card-border);
  box-shadow: 0 6px 20px rgba(10,20,40,0.03);
}
.card h4{
  margin:0 0 12px 0;
  font-size:18px;
  color:var(--red);
  letter-spacing:0.6px;
}
.card p{
  margin:0;
  font-family: "Merriweather", serif;
  font-size:15px;
  color:rgba(0,0,0,0.8);
  line-height:1.55;
}

/* footer small */
footer{
  margin-top:28px;
  font-size:13px;
  color:rgba(0,0,0,0.6);
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}

footer a {
  color:rgba(0,0,0,0.6);
  text-decoration: underline;
}

.facebook-link {
  color: var(--blue);
}

/* responsive */
@media (max-width:980px){
  .top{ grid-template-columns: 1fr 320px; }
  .container{ margin:20px; padding:18px; }
}
@media (max-width:820px){
  .top{ grid-template-columns: 1fr; }
  .lower{ grid-template-columns: 1fr; }
  .title h2{ font-size:40px }
  .title h3{ font-size:34px }
}
@media (max-width:420px){
  .logo{ width:64px; height:64px; }
  .logo svg{ width:42px; height:42px; }
  .brand h1{ font-size:16px; }
}

/* small utilities */
.muted { color: rgba(0,0,0,0.6); }
.small { font-size:13px }

.contact-card {
  display: flex;
  gap: 8px;
  margin-top:16px;
}

.contact-link {
  flex: 1;
  display: flex;
  padding: 1rem;
  background-color: var(--blue);
  text-decoration: none;
  color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  align-items: center;
  font-weight: bolder;
  justify-content: center;
}

.contact-link:first-child {
  border-right: none;     /* Avoid double border in the middle */
}

.contact-link:hover {
  background-color: #e0e0e0;
}

.learning-hub {
  display: block;
  width: 100%;
  padding: 6px;
  font-size: 18px;
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
  color: var(--blue);
  text-decoration: none;
  font-weight: bold;
}

.learning-hub-2 {
  padding: 6px 20px;
  font-size: 18px;
  text-align: center;
  background-color: var(--blue);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.page-links ul {
  list-style-type: none;
  padding-left: 0;
}

.page-links a {
  color: #fff;
  font-weight: bold;
}