* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  background: #0b3c5d;
  color: #fff;
  padding: 15px 20px;
}

.header-top {
  padding: 15px 20px;
}


.header-bottom {
  font-size: 18px;
}



.logo {
  font-size: 18px;
  font-weight: bold;
}

/* LAYOUT */
.container {
  display: flex;
  min-height: calc(100vh - 100px);
}

/* SIDEBAR */
.sidebar {
  width: 300px;
  background: #f1f1f1;
  padding: 20px;
}

/* .sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 15px;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
} */

/* SIDEBAR MENU */
.sidebar {
  width: 300px;
  background: #f5f7fa;
  padding: 25px 15px;
  border-right: 1px solid #ddd;
}

.menu {
  list-style: none;
}

.menu li {
  margin-bottom: 8px;
}

/* MENU LINK */
.menu a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* HOVER */
.menu a:hover {
  background: #e6f0fa;
  color: #0b3c5d;
}

.menu .current-menu-item > a {
  background: #0b3c5d;
  color: #fff;
  border-left: 4px solid #1fa2ff;
}

/* WORDPRESS SUBMENU */
.menu .sub-menu {
  list-style: none;
  padding-left: 15px;
  margin-top: 5px;
  display: none;
}

.menu .menu-item-has-children > a::after {
  content: "";
  float: right;
  transition: transform 0.3s;
}

.menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.menu .menu-item-has-children:hover > a::after {
  transform: rotate(90deg);
}

.menu .sub-menu a {
  font-size: 14px;
  padding: 8px 12px;
  background: #eef3f8;
  border-radius: 4px;
  margin-bottom: 5px;
}

/* ACTIVE MENU */
.menu .current-menu-item > a {
  background: #0b3c5d;
  color: #fff;
}


/* MOBILE */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
  }
}


/* CONTENT */
.content {
  flex: 1;
  padding: 30px;
  background: #fafafa;
}

.big-section {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.big-section h1 {
  margin-bottom: 15px;
  color: #0b3c5d;
}

.big-section p {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* CARDS */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 6px;
}

.footer {
  background: #0b3c5d;
  color: #fff;
  padding: 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* TOP : 2 COLUMNS */
.footer-top {
  display: flex;
  
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-left {
  display: flex;
  align-items: center;
}


.footer-logo {
  font-size: 18px;
  font-weight: bold;
}

.footer-right {
  flex: 1;
  font-size: 14px;
}

.footer-right address {
  font-style: normal;
  line-height: 1.6;
}

/* BOTTOM : SINGLE ROW */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
}


.footer-logo-img {
  max-width: 50%;  
  width: 100%;
  height: auto;
  display: block;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    text-align: center;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }
}
