/****** PLACE YOUR CUSTOM STYLES HERE ******/
@media (max-width: 768px) {
    p {
        font-size: 14px;
        text-align: justify;
    }
}

section {
    padding: 40px 20px;
}

@media (max-width: 768px) {
    section {
        padding: 20px 10px;
    }
}

/* General Responsive Adjustments */
img {
    max-width: 100%;
    height: auto;
}

p, h2, h3, h4 {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h2, h3, h4 {
        font-size: smaller;
        text-align: center;
    }

    p {
        font-size: smaller;
        line-height: 1.5;
    }

    .container {
        padding: 15px;
    }
}

.fixed-demo-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff7e5f, #ff3f81);
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1000; 
}

.fixed-demo-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ff3f81, #ff7e5f);
}

  .cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
    max-width: 400px;
    display: none;
  }
  .cookie-content {
    text-align: center;
  }
  .cookie-buttons button, #save-preferences {
    margin: 5px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
  }
  #accept-all { background-color: green; color: white; }
  #reject-all { background-color: red; color: white; }
  #customize, #save-preferences { background-color: grey; color: white; }