@charset "utf-8";
/* CSS Document */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;	
  font-size: 16px;
  line-height: 1.5;
  background: #f4f6f9; 
}
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.3px;
}
.center	{text-align:center;}
.right	{text-align:right;}
.vtop	{vertical-align:top;}
.nobr		{white-space:nowrap;}

main.page-grid {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
}
/* HEADER BASE */
.site-header {
  background: #0a2240; /* navy */
  border-bottom: 4px solid #f58220; /* orange accent */
  max-width:1600px;
}

/* INNER CONTAINER */
.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-wrap img {
  height: 60px;
  width: auto;
  display: block;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 5px 0;
  position: relative;
}

/* HOVER EFFECT */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #f58220;
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .logo-wrap img {
    height: 50px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .main-nav a {
    font-size: 14px;
  }
}
/* Side menu columns */	
.side_col2 {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px;

  grid-template-areas:
    "col1-2  col2-2";
}
.col1-2	{grid-area: col1-2;}
.col2-2	{grid-area: col2-2;}
	
.side_col3 {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 5px;

  grid-template-areas:
    "col1-3  col2-3  col3-3";
}

.col1-3	{grid-area: col1-3;}
.col2-3	{grid-area: col2-3;}
.col3-3	{grid-area: col3-3;}

/* FOOTER */
footer {
  padding: 15px;
  max-width:1600px;
}
.site-footer {
    color: white;
    padding: 30px 20px;
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.footer-left a {
    display: block;
    color: #f57c00;
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-left .copyright {
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* RIGHT SIDE */
.footer-right img {
    max-width: 600px;
	width: 90%;
    height: auto;
}
/* MOBILE STACK */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left a {
        display: inline-block;
        margin: 0 10px;
    }
}
