/* Font */
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');

/* Design */
*,
*::before,
*::after {
  box-sizing: border-box;
  text-align: center;
}

html {
  background-color: ghostwhite;
}

body {
  color: #272727;
  font-family: 'Quicksand', serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  padding: 1rem;
}

.main{
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

h2 {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    margin: 5px 0 50px 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

a {
    text-decoration: none;
    color: #000000;
}

a.btn.card_btn {
    text-decoration: none;
    color: #ffffff;
}

.btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
  margin: auto;
}

.card_title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
  min-height: 4.4rem;
  padding-bottom: 1rem;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
    margin: 0;
  }
  .card_title {
  color: #ffffff;
  font-size: 1.0rem;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 25%;
    margin: 0;
  }
  .card_title {
  color: #ffffff;
  font-size: 0.9rem;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  padding: 1rem;
  background: linear-gradient(to bottom left, #ffb300 0%, #FFC39E 100%);
}

#consentDialog {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3b3b3b;
    opacity: 0.98;
    border-top: 1px solid #4b3e4b; /* subtle top border */
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* subtle shadow for depth */
    font-family: Arial, sans-serif; /* Change as per your website's font */
    color: ghostwhite;
}

/*Button One*/
#consentDialog button  {
  background: none;
  border: 1px solid;
  font: inherit;
  line-height: 1;
  margin: 0.25em 0.5em;
  padding: 0.8em 1em;
  color: #fff;
  transition: 0.25s;
  min-width: 100px;
}

#consentDialog button#denyConsent{
    border-color: lightgrey;
    color: lightgrey;
}

#consentDialog button:hover,
#consentDialog button:active{
  border-color: green;
  color: green;
}

#consentDialog button#denyConsent:hover,
#consentDialog button#denyConsent:active {
    border-color: red;
    color: red;
}

.consent-buttons {
    white-space: nowrap; /* Prevents line breaks inside this div */
    padding-top: 10px;
}

