/* 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;
}

.information {
    padding: 642px 0 54px;
    text-align: center;
    font-family: JosefinSans-SemiBold, JosefinSans-SemiBold;
}

.information p {
    font-size: 28px;
    line-height: 36px;
}

.information .divider{
    margin-bottom: 40px;
}

.information span {
    color: #DF2A22;
}

.contact {
  font-size: 30px;
  color: #0C1F31;
  line-height: 40px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: JosefinSans-Regular, JosefinSans-Regular;
}

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

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

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

@media (max-width: 768px) {
    .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;
    }

    .information {
        padding: 442px 10px 20px;
    }

    .information p {
        font-size: 16px;
        line-height: 28px;
    }

    .information .divider {
        margin-bottom: 20px;
    }

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