/* Pricing card */
.pricing {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    max-width: 400px;
    margin: 10px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing:hover {
    transform: translateY(-5px);
}

.pricing h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.pricing .h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #2d89ef;
    margin-bottom: 10px;
}

.pricing .type--fine-print {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.pricing .label {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.875rem;
    margin-bottom: 15px;
}

.pricing ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

.pricing ul li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pricing ul li .checkmark {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    background-color: #2d89ef;
    border-radius: 50%;
    position: relative;
}

.pricing ul li .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

/* Button styling */
.btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .article {
    flex: 1 1 calc(25% - 16px); /* 4 kolom untuk desktop */
    max-width: calc(25% - 16px);
    text-align: center;
    padding: 10px;
  }

  .article i {
    font-size: 2em;
    margin-bottom: 8px;
  }

  .article h4 {
    margin: 10px 0;
    font-size: 1.2em;
  }

  @media (max-width: 1024px) {
    .article {
      flex: 1 1 calc(33.33% - 16px); /* 3 kolom untuk tablet */
      max-width: calc(33.33% - 16px);
    }
  }

  @media (max-width: 768px) {
    .article {
      flex: 1 1 calc(50% - 16px); /* 2 kolom untuk layar kecil */
      max-width: calc(50% - 16px);
    }
  }

  @media (max-width: 480px) {
    .article {
      flex: 1 1 100%; /* 1 kolom untuk layar sangat kecil */
      max-width: 100%;
    }
  }

.btn:hover {
    transform: scale(1.05);
}

.d-flex {
    display: flex !important;
}

.btn__text {
    display: inline-block;
}

/* Justify and align utilities */
.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-space-between {
    justify-content: space-between;
}

.justify-space-around {
    justify-content: space-around;
}

.justify-space-evenly {
    justify-content: space-evenly;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

/* Column and Row utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

#newsletter select {
    display: block;
    width: 100%;
    padding: 8px;
    color: #333335;
    border-color: #D7D7D7;
    background-color: #FFFFFF;
}

#newsletter textarea {
    display: block;
    width: 100%;
    padding: 8px;
    color: #333335;
    border-color: #D7D7D7;
    background-color: #FFFFFF;
}

.col-1 { flex: 0 0 8.333%; max-width: 8.333%; }
.col-2 { flex: 0 0 16.667%; max-width: 16.667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5 { flex: 0 0 41.667%; max-width: 41.667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8 { flex: 0 0 66.667%; max-width: 66.667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.667%; max-width: 91.667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

.checkbox-container {
    display: flex;
    align-items: flex-start; /* Align checkbox and label properly */
    gap: 10px; /* Add spacing between the checkbox and label */
    font-family: Arial, sans-serif; /* Set a clean font */
    font-size: 14px;
    margin: 10px 0;
}

/* Styling untuk checkbox */
.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #007BFF; /* Customize the checkbox color */
    cursor: pointer;
}

/* Styling untuk label */
.checkbox-container label {
    color: #333; /* Dark gray for text */
    line-height: 1.5; /* Spacing for better readability */
    cursor: pointer; /* Makes label clickable */
}
