/* ============================================
   Global CSS Variables
   ============================================ */
:root {
  /* Colors */
  --color-primary: #2495d3;
  --color-primary-dark: #004a7f;
  --color-primary-light: #8ccef0;
  --color-accent: #a4d96c;
  --color-text: #000000;
  --color-text-light: #e0e0e0;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f4f4;
  --color-bg-dark: #003a5d;
  --color-border: rgba(0, 0, 0, 0.06);
  --color-overlay: rgba(0, 0, 0, 0.45);
  --color-shadow: rgba(0, 0, 0, 0.29);
  --color-light-blue: #f4f7fa;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Lato', sans-serif;
  --font-open-sans: 'Open Sans', sans-serif;

  /* Font Sizes */
  --font-size-xs: 15px;
  --font-size-sm: 16px;
  --font-size-base: 17px;
  --font-size-md: 30px;
  --font-size-lg: 32px;
  --font-size-xl: 49px;
  --font-size-xxl: 52px;
  --font-size-hero: 59px;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  --line-height-base: 23px;
  --line-height-md: 27px;
  --line-height-lg: 40px;
  --line-height-xl: 52px;
  --line-height-hero: 65px;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  --spacing-4xl: 48px;
  --spacing-5xl: 50px;
  --spacing-6xl: 52px;
  --spacing-7xl: 58px;
  --spacing-8xl: 110px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Container Widths */
  --container-sm: 600px;
  --container-md: 1264px;
  --container-lg: 1472px;
  --container-max: 1920px;

  /* Breakpoints */
  --breakpoint-xs: 480px;
  --breakpoint-sm: 768px;
  --breakpoint-md: 1200px;
  --breakpoint-lg: 1472px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 0 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0px 0px 15px rgba(0, 0, 0, 0.29);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.1);

  /* Letter Spacing */
  --letter-spacing-tight: 0px;
  --letter-spacing-normal: 0.6px;
  --letter-spacing-wide: 0.9px;
}

.h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

/* ============================================
   Base Resets & Normalize
   ============================================ */
* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-md);
  color: var(--color-text);
  background-color: var(--color-light-blue);
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text);
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #ffffff !important;
}

h2 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
}

h3 {
  font-size: var(--font-size-md);
  line-height: var(--line-height-md);
  letter-spacing: var(--letter-spacing-normal);
}

p {
  margin: 0;
  font-size: var(--font-size-base);
  line-height: var(--line-height-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

strong {
  font-weight: 800;
}

/* ============================================
   Common Utility Classes
   ============================================ */
.container {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-sm {
  max-width: var(--container-sm);
  margin: 0 auto;
}

.container-md {
  max-width: var(--container-md);
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

/* ============================================
   Common Button Styles
   ============================================ */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-xl);
  background-color: var(--color-primary);
  color: var(--color-bg);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-family: var(--font-primary);
  transition: background-color var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn:hover,
.btn:focus {
  background-color: var(--color-primary-dark);
  color: var(--color-bg);
}

.btn:active {
  opacity: 0.9;
}

.wwg-btn {
  display: inline-block;
  background: #2495d3;
  color: #fff;
  padding: 15px;
  border-radius: 6px;
  font: normal normal normal 15px / 23px Poppins;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s;
  letter-spacing: 0.9px;
  border: none;
}

.wwg-btn:hover {
  background: #0d7ac6;
  color: #ffffff;
  text-decoration: none;
  font: normal normal normal 15px / 23px Poppins;
}
/* ============================================
   Common Link Styles
   ============================================ */
.link {
  color: var(--color-primary);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ============================================
   Common Card Styles
   ============================================ */
.card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   Common Grid Layouts
   ============================================ */
.grid {
  display: grid;
  gap: var(--spacing-3xl);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ============================================
   Responsive Utilities
   ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 16px;
    line-height: 1.2;
  }

  h2 {
    font-size: var(--font-size-md);
  }

  h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* ============================================
   Common Overlay Pattern
   ============================================ */
.overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

/* ============================================
   Accessibility
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ============================================
   Hero Section Background Layers
   ============================================ */
.row-fluid-wrapper.row-number-1,
.dnd-section.dnd_area-row-0-padding {
  position: relative;
  z-index: 0 !important;
}

.row-fluid-wrapper.row-number-1 > *,
.dnd-section.dnd_area-row-0-padding > *,
.row-fluid-wrapper.row-number-1 > * > *,
.dnd-section.dnd_area-row-0-padding > * > *,
.row-fluid-wrapper.row-number-1 > * > * > *,
.dnd-section.dnd_area-row-0-padding > * > * > * {
  pointer-events: auto !important;
}

.dnd_area-row-0-background-layers {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none !important;
}

.dnd_area-row-0-background-layers:before {
  background: rgba(0, 0, 0, 0.5);
  content: '';
  inset: 0;
  position: absolute;
  z-index: 1;
  pointer-events: none !important;
}

#hs-button_widget_1764876202470 {
  border-radius: 6px !important;
}

#hs-button_widget_1764868500796 {
  border-radius: 6px !important;
}

.hs-button {
  border-radius: 6px !important;
}

.hs-image-widget {
  border-radius: 20px !important;
}

.cell_17658934180062-padding {
  width: 1018px;
}

@media (max-width: 1024px) {
  .cell_17658934180062-padding {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .cell_17658934180062-padding {
    width: 100%;
  }
}

/* ============================================
   404 Page
   ============================================ */
.wwg-404 {
  padding: 180px 16px 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner_left {
  max-width: 960px !important;
  text-align: left !important;
}

.black {
  letter-spacing: 0px !important;
  color: #000000 !important;
  font: normal 300 59px/59px Poppins !important;
}

.weight-700 {
  font-weight: bold !important;
}

.wwg-404__inner {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}

.wwg-404__layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  text-align: left;
}

.wwg-404__illustration {
  flex: 0 0 220px;
}

.wwg-404__illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.wwg-404__content {
  flex: 1 1 auto;
  max-width: 720px;
}

@media (max-width: 768px) {
  .wwg-404__layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .wwg-404__illustration {
    flex: 0 0 auto;
    width: 180px;
  }
}

.wwg-404__code {
  font: normal 400 96px/1 Poppins;
  color: #0c4162;
  margin: 0 0 12px;
}

.wwg-404__title {
  font: normal 600 28px/36px Poppins;
  color: #1e293b;
  margin: 0 0 10px;
}

.wwg-404__copy {
  font: normal 400 16px/24px Poppins;
  color: #475569;
  margin: 0 0 26px;
}

/* ============================================
   Search Results Page
   ============================================ */
.wwg-search {
  padding-top: 130px;
  background: #004060;
}

.wwg-search__inner {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 20px;
}

.wwg-search__hero-band {
  background: #004060;
  padding: 56px 0 48px;
}

.wwg-search__content-band {
  padding: 34px 0 70px;
  background: #f7f9fb;
}

.wwg-search__hero {
  text-align: center;
  font: normal normal 300 59px/65px Poppins;
  letter-spacing: 0px;
  color: #ffffff;
}

.wwg-search__filters {
  display: block;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  margin: 0 0 24px;
}

.wwg-search__filters-label {
  display: block;
  text-align: left;
  font: normal normal bold 30px / 40px Poppins;
  letter-spacing: 0.6px;
  color: #000000;
}

.wwg-search__filters label {
  margin-right: 28px;
}

.wwg-search__filter-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: normal normal normal 17px/27px Poppins;
  color: #000000;
  cursor: pointer;
}

.wwg-search__filter-option input {
  width: 20px;
  height: 20px;
}

.wwg-search__meta-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.wwg-search__meta {
  font: normal 400 20px/1.4 Poppins;
  color: #1f2937;
  text-align: right;
}

.wwg-search__list {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.wwg-search__item {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.wwg-search__thumb-link {
  display: block;
  height: 100%;
}

.wwg-search__thumb {
  width: 100%;
  height: 100%;
  min-height: 290px;
  max-height: 355px;
  object-fit: cover;
  display: block;
}

.wwg-search__thumb--placeholder {
  background: linear-gradient(145deg, #304a5a 0%, #799091 100%);
}

.wwg-search__body {
  padding: 42px 34px;
}

.wwg-search__title {
  font: normal normal bold 30px/40px Poppins;
  letter-spacing: 0.6px;
  color: #000000;
  margin: 0 0 20px;
}

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

.wwg-search__title a:hover {
  color: #0d7ac6;
}

.wwg-search__desc {
  text-align: left;
  font: normal normal normal 17px/27px 'Open Sans', sans-serif;
  letter-spacing: 0;
  color: #000000;
  opacity: 1;
  margin: 0;
}

.wwg-search__pagination {
  margin-top: 80px;
}

.wwg-search__pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.wwg-search__pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid #00669a;
  border-radius: 50%;
  text-decoration: none;
  color: #00669a;
  font: normal normal 600 17px/27px Poppins;
  line-height: 1;
  padding: 0;
}

.wwg-search__pagination .active a {
  background: #00669a;
  color: #ffffff;
  border-color: #00669a;
}

@media (max-width: 1200px) {
  .wwg-search__hero-band {
    padding: 46px 0 40px;
  }

  .wwg-search__hero {
    font: normal 300 42px/1.2 Poppins;
  }

  .wwg-search__filters-label {
    font: normal 700 34px/1.2 Poppins;
  }

  .wwg-search__filter-option {
    font: normal 400 22px/1.2 Poppins;
  }

  .wwg-search__meta-group {
    display: block;
  }

  .wwg-search__meta {
    font: normal 400 16px/1.4 Poppins;
    text-align: left;
  }

  .wwg-search__item {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .wwg-search__body {
    padding: 28px;
  }

  .wwg-search__title {
    font: normal normal bold 30px/40px Poppins;
    letter-spacing: 0.6px;
  }

  .wwg-search__desc {
    font: normal normal normal 17px/27px 'Open Sans', sans-serif;
  }
}

@media (max-width: 768px) {
  .wwg-search {
    padding-top: 92px;
  }

  .wwg-search__hero-band {
    padding: 34px 0 30px;
  }

  .wwg-search__hero {
    font: normal 400 34px/1.25 Poppins;
  }

  .wwg-search__filters {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .wwg-search__filters-label {
    font: normal 700 30px/1.2 Poppins;
    margin-bottom: 10px;
  }

  .wwg-search__filter-option {
    font: normal 400 20px/1.2 Poppins;
    margin: 0 18px 8px 0;
  }

  .wwg-search__meta {
    text-align: left;
    font: normal 400 15px/1.4 Poppins;
    margin-top: 0;
  }

  .wwg-search__item {
    grid-template-columns: 1fr;
  }

  .wwg-search__thumb {
    min-height: 220px;
  }

  .wwg-search__body {
    padding: 20px 18px 22px;
  }

  .wwg-search__title {
    font: normal normal bold 26px/34px Poppins;
    letter-spacing: 0.4px;
  }

  .wwg-search__desc {
    font: normal normal normal 16px/25px 'Open Sans', sans-serif;
  }
}

/* ============================================
   Blog Post (Single)
   ============================================ */
.wwg-blog-post {
  background: #f5f6f8;
  padding: 170px 20px 90px;
}

.wwg-blog-post__inner {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: start;
}

.wwg-blog-post__meta {
  font: normal 600 11px/16px Poppins;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 10px;
}

.wwg-blog-post__title {
  font: normal 700 32px/40px Poppins;
  color: #000000 !important;
  margin: 0 0 20px;
}

.wwg-blog-post__body {
  font: normal 400 16px/28px Poppins;
  color: #334155;
}

.wwg-blog-post__sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wwg-blog-post__cta {
  display: flex;
}

.wwg-blog-post__latest-heading {
  font: normal 700 18px/24px Poppins;
  margin: 0 0 16px;
  color: #111827;
}

.wwg-blog-post__latest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwg-blog-post__latest-item {
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
}

.wwg-blog-post__latest-item:first-child {
  border-top: none;
  padding-top: 0;
}

.wwg-blog-post__latest-category {
  font: normal 600 11px/16px Poppins;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 6px;
}

.wwg-blog-post__latest-title {
  font: normal 700 15px/22px Poppins;
  margin: 0;
  color: #0f172a;
}

.wwg-blog-post__latest-title a {
  color: inherit;
  text-decoration: none;
}

.wwg-blog-post__latest-title a:hover {
  text-decoration: underline;
}

/* ============================================
   Blog Listing
   ============================================ */
.wwg-blog-listing {
  background: #f5f6f8;
  padding: 170px 20px 90px;
}

.wwg-blog-listing__inner {
  max-width: 1420px;
  margin: 0 auto;
}

.wwg-blog-listing__header {
  margin-bottom: 28px;
}

.wwg-blog-listing__title {
  font: normal 700 38px/46px Poppins;
  color: #000000 !important;
  margin: 0 0 10px;
}

.wwg-blog-listing__description {
  font: normal 400 17px/27px Poppins;
  color: #334155;
  margin: 0;
}

.wwg-blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.wwg-blog-listing__card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wwg-blog-listing__image-link {
  display: block;
}

.wwg-blog-listing__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.wwg-blog-listing__body {
  padding: 18px 18px 20px;
}

.wwg-blog-listing__meta {
  font: normal 600 11px/16px Poppins;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 8px;
}

.wwg-blog-listing__post-title {
  font: normal 700 22px/30px Poppins;
  margin: 0 0 10px;
}

.wwg-blog-listing__post-title a {
  color: #0f172a;
  text-decoration: none;
}

.wwg-blog-listing__post-title a:hover {
  color: #0369a1;
}

.wwg-blog-listing__summary {
  font: normal 400 16px/26px Poppins;
  color: #334155;
}

.wwg-blog-listing__pagination {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.wwg-blog-listing__page-link {
  font: normal 600 14px/20px Poppins;
  color: #0369a1;
  text-decoration: none;
}

.wwg-blog-listing__page-link:hover {
  text-decoration: underline;
}

.wwg-blog-listing__page-status {
  font: normal 500 14px/20px Poppins;
  color: #475569;
}

@media (max-width: 980px) {
  .wwg-blog-post__inner {
    grid-template-columns: 1fr;
  }

  .wwg-blog-listing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wwg-blog-post {
    padding: 60px 16px 80px;
  }

  .wwg-blog-post__content {
    padding: 36px 28px;
  }

  .wwg-blog-post__title {
    font-size: 26px;
    line-height: 34px;
  }

  .wwg-blog-listing {
    padding: 130px 16px 80px;
  }

  .wwg-blog-listing__title {
    font-size: 30px;
    line-height: 38px;
  }

  .wwg-blog-listing__grid {
    grid-template-columns: 1fr;
  }
}

/* ============ Blog author listing page ============ */
.wwg-author-bio {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  padding: 40px;
  margin-bottom: 56px;
}

.wwg-author-bio__photo {
  flex: 0 0 200px;
}

.wwg-author-bio__photo img {
  width: 200px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.wwg-author-bio__body {
  flex: 1;
  min-width: 0;
}

.wwg-author-bio__name {
  font: normal 700 38px/44px Poppins;
  color: #0f172a !important;
  margin: 0 0 12px;
}

.wwg-author-bio__title {
  font: normal 600 14px/20px Poppins;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2495d3;
  margin: 0 0 18px;
}

.wwg-author-bio__description {
  font: normal 400 17px/28px Poppins;
  color: #334155;
}

.wwg-author-bio__description p {
  margin: 0 0 12px;
}

.wwg-author-bio__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  color: #2495d3;
  transition: color 0.2s ease;
}

.wwg-author-bio__linkedin:hover {
  color: #0d7ac6;
}

.wwg-author-posts__heading {
  font: normal 700 26px/32px Poppins;
  color: #0f172a !important;
  margin: 0 0 24px;
}

.wwg-author-posts__card--hidden {
  display: none;
}

.wwg-author-posts__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.wwg-author-posts__pagination--hidden {
  display: none;
}

.wwg-author-posts__empty {
  font: normal 400 17px/27px Poppins;
  color: #475569;
}

@media (max-width: 640px) {
  .wwg-author-bio {
    flex-direction: column;
    gap: 24px;
    padding: 28px;
  }

  .wwg-author-bio__photo,
  .wwg-author-bio__photo img {
    width: 100%;
  }

  .wwg-author-bio__photo img {
    height: 280px;
  }

  .wwg-author-bio__name {
    font-size: 30px;
    line-height: 36px;
  }
}

/* ======================================= */
.hsfc-Step__Content {
  padding: 40px;
}

[data-hsfc-id='Renderer'] .hsfc-Row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.hsfc-FieldLabel {
  font-size: 18px !important;
  font-weight: bold !important;
  line-height: 27px !important;
}

.hsfc-TextInput {
  background-color: #f4f7fa !important;
  background-image: none !important;
  border-radius: 4px !important;
  border-style: none !important;
  padding-left: 15px !important;
}
.hsfc-TextareaInput {
  background-color: #f4f7fa !important;
  background-image: none !important;
  border-radius: 4px !important;
  border-style: none !important;
  padding-left: 15px !important;
}
.hsfc-Button,
.hs-button {
  background: #2495d3 !important;
  border-radius: 4px !important;
  height: 52px !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer !important;
}
.hsfc-Button:hover,
.hs-button:hover {
  background: #0d7ac6;
}

.widget-type-form {
  background-color: #ffffff !important;
  background-image: none !important;
  display: block !important;
  margin: 1rem !important;
}
.form-columns-1,
.form-columns-2,
.form-columns-3 {
  max-width: 100% !important;
  margin: 20px 0 !important;
}

.form-columns-0 {
  margin: 10px 0;
}

.hs-input {
  width: 100% !important;
  border: none !important;
  border-radius: 4px !important;
  background: #f4f7fa 0% 0% no-repeat padding-box !important;
  height: 60px !important;
  padding: 15px !important;
  box-sizing: border-box !important;
  font: 17px / 27px Poppins !important;
  letter-spacing: 0px !important;
  color: #000 !important;
  opacity: 1 !important;
  margin-top: 10px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease !important;
}
.hs-error-msgs {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: red;
}
textarea {
  min-height: 96px !important;
  resize: vertical !important;
  line-height: 22px !important;
}

/* CookieYes policy page: hide injected title */
h1.cookie-policy-h1 {
  display: none !important;
}

.hs-form-booleancheckbox-display {
  display: flex !important;
}

.hs-form-booleancheckbox-display input {
  width: 20px !important;
  height: 20px !important;
  margin-right: 10px !important;
}

.inputs-list {
  list-style: none;
  padding: 0;
}
