.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  color: white;
  padding: 10px 0;
  z-index: 1000;
  display: none;
}

@media screen and (max-width: 430px){
  .navbar {
    display: block;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .navbar {
    display: block;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    padding-right: 26px;
    padding-left: 44px;
  }
}

.contact-us {
  background-color: #414142;
  border-radius: 30px;
  width: fit-content;
  height: 32px;
  margin-top: 16px;
  margin-right: 8px;
  outline: none;
  border: none;
}
.contact-us a {
  color: #ffffff;
  font-family: "Poppins", Helvetica;
  font-size: 10px;
  position: relative;
  top: -2px;
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .contact-us {
    min-width: max-content;
    min-height: 38px;
    margin-right: 16px;
  }
  .contact-us a { font-size: 14px; }
}

.navbar-double { display: flex; }

.dropbtn {
  background-color: transparent;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  z-index: 10;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  margin-top: 74px;
  height: 0%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 100%;
  overflow: auto;
  box-shadow: 0px 6px 4px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 0 0 16px 16px;
  text-align: center;
  font-family: "Poppins", Helvetica;
  color: #414142;
  transition: 0.2s;
}

.dropdown-content a {
  color: #a1a1a1;
  padding: 22px 16px;
  text-decoration: none;
  display: block;
  font-size: 24px;
}
.dropdown-content a:first-child {
  border-top: solid 1px #414142;
  width: 70%;
  margin: 0 auto;
  padding-top: 40px;
  text-decoration: none;
  display: block;
}
.dropdown a:hover { background-color: #ddd; }
.show { height: 788%; }

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  padding-top: 2px;
  padding-left: 60px;
  cursor: pointer;
  padding-right: 36px;
}

.bar1, .bar2, .bar3 {
  width: 30px;
  height: 3px;
  background-color: #414142;
  margin: 6px 0;
  transition: 0.4s;
  z-index: 0;
}
.change .bar1 { transform: translate(0, 7px) rotate(-45deg); }
.change .bar2 { opacity: 0; }
.change .bar3 { transform: translate(0, -11px) rotate(45deg); }

.navbar-logo {
  margin-left: 0;
  padding-top: 16px;
}
.navbar-logo svg { width: 32px; height: 32px; }
.navbar-logo path { fill: #0087ca; }

.nav-link {
  color: white;
  text-decoration: none;
  padding: 10px 8px;
}
.nav-link:hover { background-color: #555; border-radius: 5px; }

.bg {
  width: 40%;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 430px){
  .bg { width: 70%; top: 0; }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .bg { width: 54%; top: 10px; }
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1;
}

@media screen and (max-width: 430px){
  body .container {
    overflow: hidden;
    padding: 0 30px;
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  body .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

.close {
  margin-top: 80px;
  display: block;
}
.close path, .close svg {
  transition: width 0.1s ease-in, height 0.1s ease-in, fill 0.1s ease-in;
}
.close:hover path { fill: #0087ca; }
.close:hover svg { width: 26px; height: 26px; }

@media screen and (max-width: 430px){
  .close { display: none; }
}
@media screen and (min-width: 431px) and (max-width: 820px){
  .close { display: none; }
}

.pub-header {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #0087ca;
  font-size: 70px;
  margin-left: 100px;
  margin-bottom: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 430px){
  .pub-header {
    font-size: 44px;
    margin-left: 28px;
    margin-bottom: 0;
    margin-top: 160px;
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .pub-header {
    font-size: 54px;
    margin-left: 40px;
    margin-bottom: 0;
    margin-top: 160px;
  }
}

.pub-intro {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 100px 50px 100px;
  max-width: 1000px;
}

@media screen and (max-width: 430px){
  .pub-intro {
    font-size: 14px;
    margin: 24px 28px 30px 28px;
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .pub-intro {
    font-size: 15px;
    margin: 24px 40px 40px 40px;
  }
}

.pub-list {
  margin: 0 100px 40px 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 430px){
  .pub-list {
    margin: 0 20px 30px 20px;
    gap: 20px;
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .pub-list {
    margin: 0 40px 30px 40px;
  }
}

.pub-card {
  display: flex;
  gap: 28px;
  padding: 26px 30px;
  background: #ffffff;
  border: 2px solid #0087ca;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(0, 135, 202, 0.06);
  transition: transform 0.2s ease-in, box-shadow 0.2s ease-in;
}

.pub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 135, 202, 0.18);
}

@media screen and (max-width: 430px){
  .pub-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
  }
}

.pub-year {
  flex: 0 0 auto;
  font-family: "Poppins", Helvetica;
  font-weight: 800;
  font-size: 34px;
  color: #0087ca;
  min-width: 90px;
  border-right: 1px solid #d6e8f3;
  padding-right: 24px;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

@media screen and (max-width: 430px){
  .pub-year {
    font-size: 24px;
    border-right: none;
    border-bottom: 1px solid #d6e8f3;
    padding-right: 0;
    padding-bottom: 8px;
    min-width: 0;
  }
}

.pub-body {
  flex: 1 1 auto;
}

.pub-title-link {
  text-decoration: none;
}

.pub-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #414142;
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 8px 0;
  transition: color 0.15s ease-in;
}

.pub-title-link:hover .pub-title {
  color: #0087ca;
}

@media screen and (max-width: 430px){
  .pub-title {
    font-size: 16px;
  }
}

.pub-meta {
  font-family: "Poppins", Helvetica;
  color: #888888;
  font-size: 13px;
  margin: 0 0 12px 0;
  letter-spacing: 0.2px;
}

.pub-link {
  display: inline-block;
  font-family: "Poppins", Helvetica;
  color: #0087ca;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s ease-in;
}

.pub-link:hover {
  color: #005a87;
  transform: translateX(2px);
}

.down-bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
}
.down-bottom button {
  color: white;
  background-color: #414142;
  font-family: "Poppins";
  outline: none;
  border: none;
  border-radius: 30px;
  width: 250px;
  height: 58px;
  margin-bottom: 80px;
  transition: background-color 0.1s ease-in, width 0.1s ease-in, height 0.1s ease-in, font-weight 0.1s ease-in;
}
.down-bottom a {
  margin-bottom: 80px;
}
.down-bottom button:hover {
  background-color: #0087ca;
  width: 254px;
  height: 60px;
  font-weight: 700;
}

@media screen and (max-width: 430px){
  .back-arrow { display: none; }
}
@media screen and (min-width: 431px) and (max-width: 820px){
  .back-arrow { display: none; }
}
