@media (max-width: 768px) {
    .site-logo img, 
    .logo img, 
    header img {
        max-width: 150px !important; /* adjust as needed */
        width: auto !important;
        height: auto !important;
    }
}
@media (max-width: 768px) {
  .wp-block-group, .wp-block-cover, .hero {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
  }
}
ul {
  list-style-type: none; /* Removes the default bullet points */
}
.background {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
}
.cta-section {
  background-color: transparent; /* No purple background */
  color: white;                  /* White text */
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2,
.cta-section p {
  color: white;
  margin-bottom: 20px;
}

.cta-section .button1 {
  background-color: #3B82F6;   /* Purple button */
  color: white;                /* White text */
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: 0.3s ease;
  border: none;
}

.cta-section .button1:hover {
  background-color: #2563EB; /* Slightly lighter purple on hover */
  color: white;
}
.icon-heading {
  display: flex;
  gap: 10px;
  line-height: .75; /* reduce vertical spacing */
  margin-bottom: 12px;
}

.icon-heading::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058"; /* circle-check */
  font-weight: 900;
  font-size: 1.4em;
  color: #3B82F6;
  line-height: 1; /* removes icon's extra space */
  display: inline-block;
  position: relative;
  top: 4px;
}

.icon-label::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: 900;
  font-size: 1.4em; /* scale relative to heading */
  margin-right: 8px;
  color: #3B82F6;
}
.button-wrapper {
  display: flex;
  justify-content: center;
}
.h3 {
    font-size:20px;
}
.button1 {
  background-color: #3B82F6;
  border: none;
  color: white;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none !important; /* force removal */
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 8px; /* less round than pill */
}

.button1:hover {
  background-color: #2563EB;
  color: white;
  text-decoration: none !important; /* reinforce on hover */
}
.heading-color {
    color: #6000CD;
    font-size: 30px;
}