/* ===================================================
   RESET & BASELINE (Normalize)
   =================================================== */
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,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #f7f7ff 0%, #eef6f8 80%, #ffffff 100%);
  color: #1D2636;
  font-size: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.65;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #44C1C1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1D2636;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 20px;
}

/* BASE CONTAINERS */
.container {
  width: 100%;
  max-width: 1244px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADINGS & TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1D2636;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1D2636;
  margin-bottom: 14px;
}
h3 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1D2636;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}
.tagline {
  font-size: 1.16rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #44C1C1;
  margin-bottom: 14px;
}
blockquote {
  border-left: 4px solid #44C1C1;
  padding-left: 20px;
  font-style: italic;
  color: #1D2636;
  background: #f7f7ff;
  margin-bottom: 10px;
}
cite {
  font-size: 0.98rem;
  color: #1D2636;
  font-weight: 500;
  margin-left: 3px;
}

strong {
  color: #1D2636;
  font-weight: 700;
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(29,38,54, .06);
  position: sticky;
  top: 0;
  z-index: 90;
}
.header-flex {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 16px;
  justify-content: space-between;
}
.logo-link img {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  color: #1D2636;
  padding: 6px 10px;
  position: relative;
  transition: color 0.2s;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #44C1C1;
  color: #fff;
}
.cta-btn {
  background: linear-gradient(90deg, #44C1C1 20%, #1D2636 95%);
  color: #fff;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 11px 28px;
  border-radius: 32px;
  border: none;
  outline: none;
  box-shadow: 0 4px 18px 0 rgba(68,193,193,0.13);
  cursor: pointer;
  margin-left: 18px;
  transition: transform 0.18s, box-shadow 0.18s;
  display: inline-block;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(100deg, #1D2636 20%, #44C1C1 80%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(29,38,54,0.10);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #1D2636;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e4f6f6;
  outline: none;
}

/* ===================================================
   MOBILE NAV MENU
   =================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29,38,54,0.93);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.77,0,0.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  padding: 18px 24px;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 14px;
  transition: background 0.18s;
  border-radius: 50%;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #44C1C1;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  width: 100%;
  align-items: flex-end;
  padding-right: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  padding: 6px 0;
  transition: color 0.18s;
  border-bottom: 1px solid rgba(255,255,255, 0.10);
  width: 100%;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #44C1C1;
  letter-spacing: 0.03em;
  background: none;
}

/* ===================================================
   HERO SECTION & GENERAL SECTIONS
   =================================================== */
.hero {
  background: linear-gradient(120deg, #44C1C1 8%, #1D2636 90%);
  color: #fff;
  padding: 70px 0 54px 0;
  margin-bottom: 60px;
}
.hero h1, .hero .tagline {
  color: #fff;
}
.hero .cta-btn {
  margin-top: 20px;
  margin-left: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.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;
}

/* ===============================
   FEATURE & SERVICES CARDS
   =============================== */
.services-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature, .service {
  flex: 1 1 270px;
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(29,38,54,0.095);
  padding: 30px 24px 24px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #e9ecef;
}
.feature:hover, .service:hover {
  box-shadow: 0 5px 26px 0 rgba(68,193,193,0.14);
  transform: translateY(-4px) scale(1.025);
}
.feature img, .service img {
  height: 48px;
  width: 48px;
}
.service-price, .feature strong{
  margin-top: 6px;
  font-weight: 700;
  color: #44C1C1;
  font-size: 1.11rem;
}

/* ===============================
   BLOG CARDS & LISTS
   =============================== */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-article {
  background: #fff;
  border-radius: 15px;
  padding: 20px 20px 20px 24px;
  box-shadow: 0 2px 10px 0 rgba(29,38,54,0.05);
  flex: 1 1 250px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  border: 1px solid #e4f6f6;
  transition: box-shadow 0.17s, transform 0.15s;
}
.blog-article:hover {
  box-shadow: 0 6px 22px 0 rgba(68,193,193,0.11);
  transform: translateY(-2px) scale(1.021);
}
.blog-article h3 {
  color: #1D2636;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.blog-article a {
  margin-top: 6px;
  color: #44C1C1;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.blog-article a:hover {
  color: #1D2636;
}

.blog-categories {
  margin-bottom: 20px;
}
.blog-categories h3 {
  margin-bottom: 7px;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0;
}
.blog-categories li a {
  background: #e4f6f6;
  color: #1D2636;
  border-radius: 12px;
  padding: 5px 13px;
  font-size: 0.96rem;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.blog-categories li a:hover {
  background: #44c1c1;
  color: #fff;
}

.blog-search {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}
.blog-search input[type="text"] {
  width: 100%;
  max-width: 350px;
  padding: 8px 14px;
  border: 1px solid #b2cccc;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 4px;
  background: #f7f7ff;
  transition: border 0.15s;
}
.blog-search input[type="text"]:focus {
  outline: none;
  border: 1.5px solid #44C1C1;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
}
.text-section ul {
  list-style: disc inside;
  margin-bottom: 0;
}

.quick-facts {
  background: #e4f6f6;
  border-radius: 10px;
  padding: 19px 23px;
  margin-top: 13px;
  color: #1D2636;
}
.quick-facts h3 {
  margin-bottom: 7px;
}

/* =========================
   CASE STUDY LIST
   ========================= */
.case-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.case-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(29,38,54,0.06);
  padding: 26px 20px 18px 24px;
  position: relative;
  border-left: 4px solid #44C1C1;
}
.case-list h3 {
  margin-bottom: 9px;
  color: #1D2636;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
  background: #eef6f8;
  padding: 50px 0 45px 0;
  margin-bottom: 60px;
  width: 100%;
}
.testimonials .content-wrapper {
  gap: 34px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #1D2636;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(29,38,54,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 280px;
  max-width: 400px;
  margin-bottom: 20px;
  border: 1px solid #e4f6f6;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(68,193,193,0.13);
  transform: translateY(-2px) scale(1.018);
}
.testimonial-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e4f6f6;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card blockquote {
  font-size: 1.03rem;
  font-style: italic;
  color: #212b33;
  margin: 0 0 7px 0;
  background: none;
  padding: 0;
  border: none;
  max-width: 230px;
}
.testimonial-card cite {
  display: block;
  font-size: 0.95rem;
  color: #44C1C1;
  font-style: normal;
}

/* =========================
   CTA SECTION
   ========================= */
.cta {
  background: linear-gradient(95deg, #eef6f8 3%, #44c1c1 70%);
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 24px 0 rgba(68,193,193,0.09);
  width: 100%;
}
.cta .cta-btn {
  margin-left: 0;
  margin-top: 14px;
}

.contact-cta {
  background: linear-gradient(95deg, #44c1c1 18%, #1d2636 95%);
  color: #fff;
  border-radius: 32px;
  padding: 44px 20px 42px 20px;
  margin-bottom: 52px;
  box-shadow: 0 6px 28px 0 rgba(29,38,54,0.14);
}
.contact-cta h2, .contact-cta p {
  color: #fff;
}
.contact-cta .cta-btn {
  margin-left: 0;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #1d2636;
  color: #fff;
  margin-top: 32px;
  padding-top: 34px;
  padding-bottom: 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-top: 0;
}
.footer-branding {
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-branding img {
  height: 37px;
  margin-bottom: 10px;
}
.footer-nav {
  flex: 2 1 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  border-radius: 6px;
  padding: 3px 8px;
}
.footer-nav a:hover {
  color: #44C1C1;
  background: none;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 5px;
}
.footer-social a {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.16s, background 0.14s;
  box-shadow: 0 2px 10px 0 rgba(29,38,54,0.12);
}
.footer-social a:hover, .footer-social a:focus {
  background: #44c1c1;
}
.footer-social img {
  width: 20px;
  height: 20px;
  filter: grayscale(1) brightness(0) invert(1) contrast(1.7);
}

.footer-copy {
  font-size: 0.99rem;
  text-align: center;
  padding: 15px 0 14px 0;
  color: #b2cccc;
}

/* =========================
   FORMS (CONTACT, SEARCH)
   ========================= */
input[type='text'],
input[type='email'],
input[type='password'],
textarea {
  background: #f7f7ff;
  border: 1px solid #b2cccc;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  transition: border 0.14s;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
}
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
textarea:focus {
  border-color: #44C1C1;
  outline: none;
}
label {
  font-size: 1.03rem;
  font-weight: 500;
  color: #1D2636;
  margin-bottom: 5px;
  display: block;
}
button {
  font-family: 'Roboto', Arial, sans-serif;
}

/* ===============================
   MISC CLASSES FOR SPACING & FLEX
   =============================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.contact-details ul {
  margin-bottom: 18px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.contact-details img {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

/* ================================
   COOKIE BANNER & COOKIE MODAL
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #1D2636;
  box-shadow: 0 -3px 20px 0 rgba(29,38,54,0.10);
  z-index: 6000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 23px 22px;
  font-size: 1rem;
  border-top: 2px solid #44C1C1;
  animation: cookieBannerIn 0.4s cubic-bezier(0.77,0,0.18,1) both;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner-message {
  flex: 2 1 220px;
  max-width: 600px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #44c1c1;
  color: #fff;
  border: none;
  border-radius: 17px;
  padding: 9px 22px;
  font-size: 1rem;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #1d2636;
  color: #fff;
}
.cookie-btn.secondary {
  background: #e4f6f6;
  color: #1D2636;
}
.cookie-btn.secondary:focus,
.cookie-btn.secondary:hover{
  background: #44c1c1;
  color: #fff;
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(29,38,54, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99991;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.14s;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 36px 0 rgba(68,193,193,0.28);
  padding: 34px 30px 28px 30px;
  max-width: 350px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  animation: cookieModalIn .28s cubic-bezier(.77,0,.18,1) both;
}
@keyframes cookieModalIn {
  from { transform: translateY(60px) scale(0.85); opacity:0; }
  to   { transform: translateY(0) scale(1);   opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #44c1c1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
  transition: background .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e4f6f6;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
}
.cookie-modal-toggle {
  margin-left: auto;
  width: 36px;
  height: 21px;
  background: #e4f6f6;
  border-radius: 17px;
  position: relative;
  cursor: pointer;
  transition: background .12s;
  border: none;
}
.cookie-modal-toggle[aria-pressed="true"] {
  background: #44c1c1;
}
.cookie-modal-toggle-slider {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-modal-toggle[aria-pressed="true"] .cookie-modal-toggle-slider {
  left: 17px;
}
.cookie-modal-category label {
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 500;
  color: #1D2636;
}

/* =========================
   RESPONSIVE STYLES
   ========================= */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .services-grid, .blog-list, .testimonial-slider {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .header-flex {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .services-grid, .blog-list, .testimonial-slider {
    flex-direction: column;
    gap: 17px;
  }
  .feature, .service, .blog-article, .testimonial-card, .case-list li {
    min-width: 0;
    max-width: 100%;
  }
  .footer-flex {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-social {
    margin-bottom: 9px;
  }
  .section, .cta, .contact-cta, .testimonials {
    padding: 28px 7px;
    margin-bottom: 38px;
    border-radius: 18px;
  }
  .hero {
    padding: 46px 0 33px 0;
    margin-bottom: 36px;
  }
  .case-list {
    gap: 14px;
  }
  .blog-categories ul {
    gap: 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 23px 11px;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.15rem;
  }
}

/* Hide cookie modal by default */
.cookie-modal-backdrop {
  display: none;
}
.cookie-modal-backdrop.active {
  display: flex;
}

/* Accessibility helper for focus states */
a:focus, button:focus, .cookie-btn:focus {
  outline: 2px solid #44C1C1;
  outline-offset: 2px;
}

/* Hide visually, but remain accessible for screen readers */
.sr-only {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.gap-20 { gap: 20px!important; }
.mt-20 { margin-top: 20px!important; }
.mb-24 { margin-bottom: 24px!important; }
.text-center { text-align: center!important; }

/* ================================
   END OF CSS FILE
   ================================ */
