.custom-card {
    background-color: #FAF9F6; /* Light gray card background */
    border: 1px solid #ddd; /* Optional border for card effect */
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
  }

  .navbar .navb-link {
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

/* Icon styles */
.icon {
    background-color: transparent; /* Initial state */
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect for the icon */
.navbar .navb-link:hover .icon {
    background-color: rgba(98, 78, 78, 0.2); /* Light-filled circle */
    transform: scale(1); /* No jumping */
}

  
h2
{
    font-size: var(--font-medium);
}
p 
{
    font-size: var(--font-text);
}

  @media (max-width: 768px) {
    h1 
    {
        font-size: var(--font-medium);
    }
    h2 {
        font-size: var(--font-text);
    }

    p {
        font-size: var(--font-small-text);
    }
}


.privacy-policy h1 {
    font-size:1.2rem;
}
.privacy-policy p 
{
  font-size: 1rem;
  color:rgb(75, 74, 74);
}

.privacy-policy ul 
{
  padding-left:10px;
  list-style: disc;
}