/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
    background-image: url(/vpn/images/bg.png);
    background-size: cover;
    background-position: center;
    padding: 43px 0;
}

h2 {
    font-family: ChillOrganic_Medium;
    font-size: 65px;
    color: #0773E1;
    line-height: 78px;
    text-align: center;
    padding-bottom: 10px;
}

/* Banner */
.banner {
  width: 100%;
}

.banner-img {
  width: 100%;
  max-width: 1280px;
  height: 548px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.information {
    font-family: ChillOrganic_Regular;
    font-size: 30px;
    color: #2D3135;
    line-height: 40px;
    text-align: center;
}

.information span {
    color: #08477F;
    text-decoration: underline;
}

.divider {
    width: 800px;
    height: 1px;
    background: #1321D3;
    margin: 20px auto;
}

.contact {
  font-size: 26px;
  color: #2D3135;
  line-height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: ChillOrganic_Regular, ChillOrganic_Regular;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  width: 420px; 
}

.contact .label {
  width: 150px; 
  text-align: right;
}

.contact .value a {
  color: #08477F;
  text-decoration: underline;
}

.hidden-xs {
    display: block;
}

.hidden-lg {
    display: none;
}

/* Responsive Design: Mobile and Tablet */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.5;
    }

    .container {
        background-image: url(/vpn/images/bg-sj.png);
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: top center;
        width: 100%;
        height: auto;
        padding-top: 16px;
        padding-bottom: 138px;
    }

    .banner {
        padding:0 0 40px; 
    }

    /* Banner */
    .banner-img {
        height: auto;
        width: 90%;
    }

    /* Title uniformly reduced */
    h2 {
        font-size: 24px !important;
        padding-bottom: 0px;
    }

    .information {
        padding: 0px 20px;
    }
    .information p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 8px;
    }

    .contact {
        font-size: 16px;
        line-height: 28px;
        gap: 0px;
    }

    .divider {
        width: 80%;    
        max-width: 360px; 
    }

    .divider1 {
        margin-bottom: 0px;
    }

    .hidden-xs {
        display: none;
    }

    .hidden-lg {
        display: block;
    }
}