/* ==================== CSS Reset & Base ==================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #0e1925;
}
body {
  min-height: 100vh;
  background-color: #0e1925;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #ebeef3;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F2CA44;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #f4e49c;
  text-decoration: underline;
}
ul, ol {
  margin-left: 18px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }
p {
  color: #ebeef3;
  margin-bottom: 16px;
  font-size: 1rem;
}
strong, b {
  color: #F2CA44;
  font-weight: 700;
}
blockquote {
  border-left: 4px solid #F2CA44;
  margin: 0 0 10px 0;
  padding-left: 16px;
  color: #d2e5f7;
  background: #132030;
  border-radius: 6px;
  font-size: 1.05rem;
}
dt { font-weight: 700; }
dd { margin-left: 0; }

/* ==================== Layout Containers ==================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
main {
  min-height: 60vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #172738;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(47,128,237, 0.13);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.2s;
  padding: 32px 24px;
}
.card:hover {
  box-shadow: 0 2px 28px 0 rgba(242,202,68, 0.15), 0 0 8px #F2CA44;
  transform: translateY(-3px) scale(1.009);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  color: #162a3a;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(25,69,105,0.11), 0 0 4px #F2CA44;
  margin-bottom: 20px;
  max-width: 430px;
  transition: box-shadow 0.17s cubic-bezier(.4,0,.2,1);
}
.testimonial-card blockquote {
  color: #162a3a;
  background: transparent;
  border-left: 3px solid #194569;
}
.testimonial-card span {
  color: #585858;
  font-size: 0.97rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* Grids/Feature Areas */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  background: #182738;
  border-radius: 13px;
  box-shadow: 0 1.5px 12px 0 rgba(25,69,105,0.09);
  padding: 32px 18px 28px 18px;
  flex: 1 1 290px;
  min-width: 240px;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.2s;
  border: 1px solid rgba(242,202,68, 0.09);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  border-color: #F2CA44;
  box-shadow: 0 0 25px #F2CA4444, 0 1px 28px 0 rgba(47,128,237,.13);
  transform: scale(1.012);
}

/* Team grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.team-grid > div {
  background: #1b2735;
  border-radius: 12px;
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 1 270px;
  box-shadow: 0 2px 20px 0 rgba(67, 155, 246, 0.055);
  transition: box-shadow 0.17s, transform 0.18s;
}
.team-grid > div:hover {
  box-shadow: 0 0 14px #F2CA44, 0 2px 28px 0 rgba(25,69,105,0.13);
  transform: translateY(-2px) scale(1.011);
}

/* Expertise icons (team) */
.expertise-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-around;
  margin-bottom: 24px;
}
.expertise-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  color: #F2CA44;
  background: #182738;
  border-radius: 10px;
  min-width: 160px;
  padding: 18px 10px 10px 10px;
}

/* Service list (on services page) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-item {
  background: #152535;
  color: #e6e8ea;
  padding: 30px 18px 24px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 12px rgba(25,69,105,0.068);
  flex: 1 1 280px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.service-item .price {
  color: #F2CA44;
  font-weight: 600;
  font-size: 1.08em;
  margin-top: 7px;
}
/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #181f29;
  color: #e3e7f1;
  border-radius: 8px;
  padding: 22px 16px;
  box-shadow: 0 1px 12px rgba(25,69,105,0.07);
}

/* Blog preview grid */
.post-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.post-preview-grid article {
  background: #152535;
  color: #f7f7f7;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(82,159,217,0.06);
  flex: 1 1 290px;
  min-width: 200px;
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.post-preview-grid article:hover {
  box-shadow: 0 0 18px #F2CA44, 0 1px 28px 0 rgba(47,128,237,.13);
  transform: scale(1.012);
}

.blog-category-filter {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  margin: 11px 0 17px 0;
  font-size: 0.98rem;
}
.blog-category-filter a {
  background: transparent;
  color: #F2CA44;
  border-radius: 10px;
  padding: 6px 16px;
  transition: background 0.14s, color 0.14s;
}
.blog-category-filter a:hover {
  background: #132030;
  color: #fff;
}

.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.featured-articles {
  background: #152535;
  border-radius: 9px;
  margin-top: 10px;
  padding: 14px 18px;
  color: #f6f6f6;
  max-width: 420px;
}

/************************************************************
  =================== HEADER, NAV, LOGO ===================
************************************************************/
header {
  background: linear-gradient(95deg, #172738 80%, #194569 100%);
  box-shadow: 0 1px 20px 0 rgba(25,69,105, 0.06);
  position: relative;
  z-index: 17;
  min-height: 70px;
}
header .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.logo img {
  height: 43px;
  width: auto;
  filter: drop-shadow(0 2px 8px #0d1825);
}

nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  color: #f7f7f7;
  font-weight: 600;
  letter-spacing: 0.007em;
  font-size: 1rem;
  position: relative;
  transition: color 0.16s;
  padding: 6px 0;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg,#F2CA44 30%,#e5e6ea 90%);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: 1.5px;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #F2CA44;
}
nav.main-nav a:hover::after, nav.main-nav a:focus::after {
  opacity: 0.73;
}

a.cta.primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F2CA44;
  color: #1e232e;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 2px 14px 0 rgba(242,202,68,0.13);
  border: none;
  outline: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  cursor: pointer;
  text-shadow: none;
  position: relative;
}
a.cta.primary:hover, a.cta.primary:focus {
  background: #ffe097;
  color: #132030;
  box-shadow: 0 4px 32px #F2CA4499;
}

/************************************************************
=============== MOBILE NAVIGATION (BURGER MENU) =============
************************************************************/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 110;
  width: 44px;
  height: 44px;
  background: #182738;
  border: none;
  border-radius: 8px;
  color: #F2CA44;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 2px 10px rgba(242,202,68,0.06);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffd23c;
  color: #182738;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #182738;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
  box-shadow: -8px 0 24px 0 rgba(25,69,105, 0.23);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #F2CA44;
  font-size: 2.2rem;
  margin: 18px 30px 8px 0;
  cursor: pointer;
  transition: color 0.12s;
}
.mobile-menu-close:hover {
  color: #fffbe6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 32px 32px 8px 32px;
}
.mobile-nav a {
  color: #ffe494;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  background: none;
  padding: 13px 0;
  border-radius: 8px;
  margin-bottom: 2px;
  text-align: left;
  width: 100%;
  transition: background 0.13s, color 0.13s;
  min-width: 70vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2CA44;
  color: #162a3a;
}

@media (max-width: 1024px) {
  nav.main-nav {
    gap: 15px;
  }
  .logo img {
    height: 37px;
  }
}
@media (max-width: 900px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 14px;
  }
  a.cta.primary {
    padding: 11px 18px;
    font-size: 0.98rem;
  }
}

/************************************************************
==================== MAIN, SECTION PADDING =================
************************************************************/
section {
  min-width: 0;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-sizing: border-box;
}
section:not(:last-of-type) {
  border-bottom: 1px solid #223448;
}

/************************************************************
================ HERO / INTRO BLOCK ========================
************************************************************/
section .container > .content-wrapper {
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0 0px 0;
  margin-bottom: 5px;
}
section .container > .content-wrapper h1, 
section .container > .content-wrapper h2 {
  background: linear-gradient(95deg,#F2CA44,#54c5ec 68%,#194569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
          text-fill-color: transparent;
  filter: brightness(1.03) contrast(1.1);
}

/************************************************************
================== BUTTONS, CTAS, INPUTS ===================
************************************************************/
button, .cta, input[type=submit] {
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  border-radius: 999px;
  font-size: 1.050rem;
  font-weight: 700;
  border: none;
  padding: 12px 26px;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.19s, color 0.19s, border 0.17s;
}
.cta.primary, button.cta.primary, input[type=submit].primary {
  background: #F2CA44;
  color: #182738;
  box-shadow: 0 4px 16px rgba(242,202,68,0.09);
}
.cta.primary:hover, button.cta.primary:hover, input[type=submit].primary:hover {
  background: #ffe097;
  color: #182738;
  box-shadow: 0 7px 22px #F2CA4444;
}
.cta.secondary {
  background: none;
  border: 2px solid #F2CA44;
  color: #F2CA44;
}
.cta.secondary:hover {
  background: #F2CA44;
  color: #151e28;
}
input[type=text], input[type=email], input[type=password], textarea {
  border-radius: 8px;
  border: 1.5px solid #18314a;
  background: #162a3a;
  color: #f7f7f7;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  margin-bottom: 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.16s, box-shadow 0.13s;
  resize: vertical;
}
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
  border-color: #F2CA44;
  box-shadow: 0 0 8px #F2CA4455;
}
::-webkit-input-placeholder { color: #b8babf; opacity: 1; }
:-moz-placeholder { color: #b8babf; opacity: 1; }
::-moz-placeholder { color: #b8babf; opacity: 1; }
:-ms-input-placeholder { color: #b8babf; opacity: 1; }
::placeholder { color: #b8babf; opacity: 1; }

/************************************************************
===================== FOOTER & BOTTOM ======================
************************************************************/
footer {
  background: #161e29;
  padding: 56px 0 22px 0;
  color: #cdd8e6;
  margin-top: 60px;
  border-top: 3px solid #23436a;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 140px;
}
.footer-nav a {
  color: #F2CA44;
  font-size: 1em;
  font-weight: 700;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: #ffe097;
}
.contact-info {
  font-size: 0.98em;
  line-height: 1.7;
  color: #dde7f7;
  margin-bottom: 15px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
}
.social-links img {
  filter: drop-shadow(0 2px 6px #18314a);
  width: 30px; height: 30px;
  opacity: 0.92;
  transition: opacity 0.15s, filter 0.12s;
}
.social-links a:hover img {
  opacity: 1;
  filter: drop-shadow(0 1px 8px #F2CA44);
}
/* Responsive footer */
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: row;
    gap: 24px;
    margin-bottom: 12px;
  }
}

/************************************************************
================== COOKIE BANNER & MODAL ===================
************************************************************/
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #132030;
  color: #fffbc0;
  padding: 22px 14px 14px 20px;
  z-index: 999999;
  box-shadow: 0 -2px 20px rgba(47,128,237,.17);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 1em;
  border-top: 2px solid #F2CA44;
  animation: cookie-fadein 0.44s cubic-bezier(.41,1.36,.57,1.19);
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(40px);} to {opacity:1; transform: none;}
}
#cookie-banner p {
  color: #fffbe0;
  margin-bottom: 0;
  max-width: 500px;
  font-size: 1.01em;
}
.cookie-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-actions button {
  border-radius: 999px;
  border: none;
  font-size: 1em;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  padding: 11px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
}
.cookie-accept {
  background: #F2CA44;
  color: #181f29;
}
.cookie-accept:hover {
  background: #ffe097;
  color: #181f29;
}
.cookie-reject {
  background: none;
  border: 2px solid #F2CA44;
  color: #F2CA44;
}
.cookie-reject:hover {
  background: #F2CA44;
  color: #132030;
}
.cookie-settings {
  background: #223448;
  color: #fff;
}
.cookie-settings:hover {
  background: #343d4a;
  color: #ffe097;
}

/* ---------------- Cookie Modal Popup ------------------- */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 9999999;
  background: rgba(25, 33, 55, 0.82);
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.17s cubic-bezier(.41,1.36,.57,1.19);
}
#cookie-modal.active {
  display: flex;
}
@keyframes cookie-modal-in {
  from {opacity:0; transform: scale(.98);} to {opacity:1; transform: none;}
}
.cookie-modal-content {
  background: #fff;
  color: #182738;
  border-radius: 17px;
  box-shadow: 0 2px 44px rgba(25,69,105,0.14);
  padding: 34px 30px 28px 30px;
  max-width: 430px;
  min-width: 275px;
  font-size: 1.08em;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookie-modal-zoom 0.3s cubic-bezier(.43,1.4,.51,.98);
}
@keyframes cookie-modal-zoom {from {transform: scale(0.98); opacity:0;} to {transform:none;opacity:1;}}
.cookie-modal-content h3 {color: #194569;}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
}
.cookie-modal-content input[type=checkbox] {
  accent-color: #F2CA44;
  width: 17px; height: 17px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 7px;
}
.cookie-close-modal {
  position: absolute;
  top: 11px;
  right: 18px;
  background: none;
  color: #F2CA44;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0 7px;
}
.cookie-close-modal:hover {
  color: #194569;
}
@media (max-width: 660px) {
  #cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 17px 8px 8px 8px;
    font-size: 0.97em;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 11px;
  }
  .cookie-modal-content {
    max-width: 97vw;
    padding: 17px 6vw 18px 6vw;
  }
}

/************************************************************
===================== MEDIA QUERIES =======================
************************************************************/
@media (max-width: 1024px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .card-container,
  .content-grid,
  .team-grid,
  .feature-grid,
  .service-list,
  .post-preview-grid,
  .expertise-icons {
    flex-direction: column !important;
    gap: 20px !important;
  }
}
@media (max-width: 768px) {
  section {
    padding: 26px 8px;
  }
  .container {
    padding: 0 6px;
  }
  .content-wrapper,
  .testimonial-cards {
    gap: 14px;
  }
  .feature-grid > div, .team-grid > div, .service-item, .post-preview-grid article {
    min-width: unset;
    padding: 22px 9px 18px 11px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 11px 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .footer-nav {
    font-size: 0.97em;
    gap: 12px;
    flex-wrap: wrap;
  }
}
@media (max-width: 620px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .section {
    padding: 15px 0 15px 0;
  }
}

/************************************************************
======= Utilities: Spacing (used flex gap/margin only) ======
************************************************************/
.section, .card-container > *, .content-grid > *, .team-grid > *, .feature-grid > *, .service-list > *, .post-preview-grid > *, .faq-item, .testimonial-card, .benefit-bullets > li {
  margin-bottom: 20px;
}
.benefit-bullets {
  margin-top: 6px;
  margin-bottom: 14px;
}

/************************************************************
==================== Miscellaneous ========================
************************************************************/
.benefit-bullets li {
  position: relative;
  padding-left: 21px;
  color: #ffe097;
  font-weight: 500;
}
.benefit-bullets li::before {
  content: '';
  position: absolute;
  left: 6px; top: 8px;
  width: 7px; height: 7px;
  background: #F2CA44;
  border-radius: 50%;
}
.industry-list {
  margin-bottom: 24px;
}
.industry-list li {
  color: #F2CA44;
  font-weight: 600;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}
.industry-list li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}

/********************* DARK/LIGHT SECTIONS *****************/
.text-section {
  background: #172738;
  padding: 21px 18px 18px 18px;
  border-radius: 10px;
  color: #d1e3f4;
  margin-bottom: 17px;
  font-size: 1.04em;
  box-shadow: 0 1px 14px rgba(25,69,105,0.06);
}
.text-section ul {
  margin-bottom: 6px;
}

/*********** Highlight for important text (neon) ***********/
.neon-text {
  color: #F2CA44;
  text-shadow: 0 0 7px #f2ca44c7;
}
/***************** Newsletter inputs ***********************/
.newsletter-signup input[type="email"] {
  min-width: 170px;
  max-width: 330px;
  display: inline-block;
}
/************************************************************
================= End of Main Styles =======================
************************************************************/
