/* Import Google Alef Font */
@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&display=swap');

/* Apply Alef font to all text and headings */
body,
h1, h2, h3, h4, h5, h6,
p, a, span, div, li, td, th,
input, textarea, select, button {
    font-family: 'Alef', sans-serif;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}


blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
} 

a{
    transition: all 0.3s ease;
}
a:focus {
    outline: none;
  }


  .ehf-button {
    background-color: #0a8abe;
    color: #fff;
    padding: 6px 18px;
    border-radius: 25px;
    text-decoration: none;
      text-decoration-thickness: auto;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .ehf-button:hover {
    background-color: #086a93;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(10, 138, 190, 0.3);
  }