header {
    background: linear-gradient(to right,rgba(7, 42, 197, 0.69), rgba(4, 25, 120, 0.816), rgba(13, 30, 90, 0.8));
    color: #fff;
    padding: 18px 0 10px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(200,0,0,0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    max-width: 1200px;
    max-height: 100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    gap: 12px;
    z-index: 1000;
}

.header-right {
    justify-content: space-between;
    align-items: flex-end;
    margin-right: 10px;
    gap: 12px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    object-fit: fill;
}

.header-left h1 {
    font-size: 1.5rem;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

header, footer {
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to bottom,rgba(0, 102, 140, 0.9), rgba(0, 68, 102, 0.9));
}

main {
    flex: 1;
}

.logos {
  display: flex;
  gap: 10px;
  max-width: 200px;
  margin-right: 50px;
}

.menu-nav {
    display: flex;
    justify-content: center;
    align-items: center; 
    background: linear-gradient(to right, rgba(13, 30, 90, 0.8), rgba(4, 25, 120, 0.816), rgba(13, 30, 90, 0.8));
    margin-top: 0px;     
    height: 100%;       
    box-shadow: 0 2px 8px rgba(200,0,0,0.04);
    margin-bottom: 0;
    padding: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list li {
  display: flex;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  outline: none;
  min-width: 60px;
  text-align: center;
}

.nav-list li a:hover,
.nav-list li a:focus {
  background-color: #1b37c491;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(13, 13, 13, 0.2);
  text-decoration-line: underline;
}

.nav-list li a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px;
  }

  .logos {
    margin-left: 0;
    gap: 20px;
    max-width: 100%;
  }

  .header-center {
    display: none;
    position: static;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 10px;
    background: #0051bcd7;
  }

  .header-center.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: #002e8bab;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #0038b1a8;
  }
}

.page-layout {
    background: rgba(255, 255, 255, 0.7);
    justify-content: center;
    margin-top: 10px;
    display: flex;
    gap: 32px;
    width: 100%;
    margin: 0;
    padding: 0 24px;
    box-sizing: border-box;
}

.main-container {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 24px;
    padding: 24px;
    max-width: 1200px;
    padding: 0; 
    box-sizing: border-box;
  }

aside.main-left-bar,
aside.main-right-bar {
    flex: 0 0 220px;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(200,0,0,0.07);
    min-width: 330px;
    font-size: 1.05rem;
}

.main-left-bar h2,
.main-right-bar h2 {
    padding: 12px 16px;
    color: #c00;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-left-bar ul,
.main-right-bar ul {
    padding-left: 0;
    list-style: none;
}

.main-left-bar li,
.main-right-bar li {
    margin-bottom: 10px;
}

.main-left-bar a,
.main-right-bar a {
    padding: 8px 12px;
    color: #222;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    transition: color 0.2s;
}

.main-left-bar a:hover,
.main-right-bar a:hover {
    color: #c00;
    text-decoration: underline;
}

main.main-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main-content h1 {
    color: #c00;
    font-size: 2.1rem;
    margin-bottom: 18px;
    font-weight: bold;
}

.main-content p {
    color: #222;
    font-size: 1.08rem;
    margin-bottom: 16px;
}


@media (max-width: 900px) {
    .main-container {
        flex-direction: column;
        gap: 18px;
    }
    .main-left-bar,
    .main-right-bar,
    .main-content {
        min-width: unset;
        padding: 18px 12px;
    }
    .news-image {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .page-layout {
        flex-direction: column;
        gap: 18px;
    }

    aside,
    main.main-content {
        min-width: unset;
        padding: 18px 12px;
    }
}

.prospek-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.prospek-card {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.prospek-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.prospek-icon {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

@media (max-width: 900px) {
    .page-layout {
        flex-direction: column;
    }
    aside.main-left-bar,
    aside.main-right-bar {
        flex: unset;
        width: 100%;
    }
    .prospek-card-list {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}


footer {
    background-color:  rgba(12, 23, 174, 0.9);
    width: 100vw;
    color: #fff;
    text-align: center;
    padding: 24px 0 16px 0;
    margin-top: 24px;
    box-shadow: 0 -2px 12px rgba(200,0,0,0.08);
    width: 100vw;
    position: relative;
}

.footer-container {
  width: 100%; 
  margin: 0 auto;
  padding: 0 48px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  box-sizing: border-box;       
}

.footer-left {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.footer-center {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-right {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: right;
}

.footer-link {
  color: #004dc9;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #0038a0;
}

.filter-options {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  gap: 8px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 6px;
}



