/* ---------------------
   RESET & BASE STYLES
---------------------- */
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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: none;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  color: #233149;
  background: #F9F6F0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  position: relative;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #31507A;
  text-decoration: none;
  transition: color 0.20s cubic-bezier(.4,1,.3,1);
}
a:hover, a:focus {
  color: #F8C259;
  outline: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.14;
}
h1 {
  font-size: 2.6rem;
  color: #31507A;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
h2 {
  font-size: 2rem;
  color: #E64980;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
h3 {
  font-size: 1.28rem;
  color: #31507A;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #31507A;
}
.subheadline {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #FF7043;
  font-size: 1.14rem;
  margin-bottom: 18px;
}
p, li, blockquote {
  font-size: 1rem;
  color: #233149;
}
blockquote {
  background: #FFF5DA;
  border-left: 6px solid #F8C259;
  padding: 18px 28px;
  font-style: italic;
  margin: 24px 0 16px 0;
  border-radius: 0 24px 24px 0;
  color: #31507A;
  box-shadow: 2px 4px 12px 0 rgba(249,187,97,0.10);
}
strong {
  color: #E64980;
  font-weight: 700;
}

/* -------------
   BRAND COLORS
--------------- */
:root {
  --color-primary: #31507A;
  --color-secondary: #F8C259;
  --color-accent: #F9F6F0;
  --color-pink: #E64980;
  --color-orange: #FF7043;
  --color-green: #43C89C;
  --color-blue: #47A0F3;
  --shadow-card: 0 6px 18px 0 rgba(49,80,122,0.10);
  --radius-card: 20px;
}

/* -------------
   LAYOUT BASICS
--------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
/* Section Spacing */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  background: #fff7e0;
  border-radius: var(--radius-card);
  padding: 34px 22px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  animation: fadein-up 0.9s cubic-bezier(.2,.8,.3,1);
}

/* Flex Pattern Classes */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 24px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: floatCard 1.4s cubic-bezier(.3,1.3,.5,1.2) both;
}
@keyframes floatCard {
  0% { transform: translateY(32px) scale(0.93); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.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;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 20px 22px;
  border-radius: var(--radius-card);
  box-shadow: 0 5px 16px 0 rgba(49,80,122,0.12);
  background: #fff;
  min-width: 240px;
  max-width: 340px;
  flex: 1 0 240px;
  transition: transform 0.18s, box-shadow 0.18s;
  border-left: 5px solid #F8C259;
  font-family: 'Roboto',Arial,sans-serif;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.035) rotate(-1deg);
  box-shadow: 0 12px 32px 0 rgba(49,80,122,0.21);
}
.testimonial-details {
  font-size: 0.96rem;
  color: #31507A;
  margin-top: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .01em;
}
.testimonial-details span {
  color: #F8C259;
  font-size: 1.08em;
  margin-left: 6px;
}
.feature-list, .service-items, .service-list, .destination-grid, .blog-preview, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-list li, .service-items > div, .service-list li, .destination-grid li, .blog-preview li, .blog-list article {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  margin-bottom: 0;
  flex: 1 1 220px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: floatCard 1.1s cubic-bezier(.3,1,.3,1);
}
.feature-list li:hover, .service-items > div:hover, .service-list li:hover, .destination-grid li:hover, .blog-preview li:hover, .blog-list article:hover {
  box-shadow: 0 10px 30px 0 rgba(49,80,122,0.16);
  transform: translateY(-5px) scale(1.025) rotate(-2deg);
}
.feature-list img {
  width: 40px; height: 40px; margin-bottom: 12px;
}

/* Buttons and Call To Actions */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F8C259;
  color: #31507A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 13px 26px;
  border: none;
  border-radius: 27px;
  box-shadow: 0 4px 16px 0 rgba(249,187,97,0.13);
  transition: background 0.23s, color 0.16s, transform 0.13s;
  margin: 10px 0 0 0;
  text-shadow: 0 1px 0 rgba(255,255,255,0.13);
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FF7043;
  color: #ffffff;
  transform: translateY(-2px) scale(1.05) rotate(-2deg);
  outline: none;
}

/* Navigation Styles */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(49,80,122,0.09);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 1.02rem;
  border-radius: 18px;
  transition: background 0.20s, color 0.16s;
  margin: 0 0 0 0;
  color: #31507A;
  background: transparent;
}
header nav a:hover, header nav a:focus {
  background: #F8C259;
  color: #fff;
}
header .cta-btn {
  margin-left: 14px;
}
header img {
  height: 47px;
  width: auto;
  margin-right: 18px;
  transition: transform 0.22s;
}
header img:hover { transform: scale(1.08) rotate(-4deg); }
.mobile-menu-toggle {
  background: #F8C259;
  color: #31507A;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  box-shadow: 0 3px 8px 0 rgba(249,187,97,0.15);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.13s;
  z-index: 100;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FF7043;
  color: #fff;
  transform: scale(1.08) rotate(3deg);
}

/* Hide on desktop, show on mobile */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; 
  width: 100vw;
  height: 100vh;
  background: rgba(255, 251, 237, 0.96);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.63,1.6,.38,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 26px 24px 0 24px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #FF7043;
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  font-size: 2rem;
  border-radius: 50%;
  margin-bottom: 24px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(249,112,67,0.13);
  align-self: flex-end;
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F8C259; color: #31507A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 32px 0 0 0;
}
.mobile-nav a {
  font-size: 1.36rem;
  color: #31507A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: transparent;
  padding: 11px 0 11px 2px;
  border-radius: 7px;
  transition: background 0.16s, color 0.14s;
  width: 100%;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8C259;
  color: #fff;
}

/* Hide normal nav and show mobile menu on mobile */
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Show normal nav on desktop, hide mobile-menu */
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* -------------
   HERO SECTION
--------------- */
.hero {
  background: linear-gradient(100deg, #F8C259 70%, #ffffff 120%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 6px 30px 0 rgba(249,194,89,0.10);
  margin-bottom: 60px;
  padding: 44px 0 48px 0;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroWave 2.2s cubic-bezier(.2,1,.4,1.2);
}
@keyframes heroWave {
  0% { opacity: 0; transform: translateY(-40px) scaleX(1.06); }
  100% { opacity: 1; transform: none; }
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 { color: #31507A; font-size: 2.35rem; margin-bottom: 11px; letter-spacing: .01em; }
.hero .subheadline {
  color: #E64980;
  font-size: 1.22rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero .cta-btn {
  margin-top: 8px;
}

/* CAROUSEL-LIKE STORY FEATURE (Galerie) */
.story-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  animation: fadein-up 1.1s ease;
}
.story-carousel > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 22px 18px 17px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
  transition: transform 0.20s, box-shadow 0.2s;
  position: relative;
  animation: floatCard 1s;
}
.story-carousel > div:hover {
  box-shadow: 0 12px 32px 0 rgba(49,80,122,0.18);
  transform: translateY(-5px) scale(1.04) rotate(1deg);
}
.participant-quotes blockquote {
  margin-left: 0; margin-right: 0;
  background: #F8C25916;
  color: #31507A;
}

/* BLOG PREVIEW AND LIST */
.blog-preview li, .blog-list article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px 0 rgba(49,80,122,0.08);
  padding: 18px 13px;
  transition: box-shadow 0.18s;
  animation: floatCard 1s;
}
.blog-preview li:hover, .blog-list article:hover {
  box-shadow: 0 8px 22px 0 rgba(49,80,122,0.13);
  background: #F8C25924;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 0 0;
  font-size: 1rem;
}
.faq-accordion dt {
  background: #F8C259;
  color: #31507A;
  padding: 13px 19px;
  border-radius: 11px 11px 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.14s;
}
.faq-accordion dd {
  padding: 12px 19px 14px 19px;
  background: #fff;
  border-radius: 0 0 11px 11px;
  margin-bottom: 9px;
  box-shadow: 0 1px 5px 0 rgba(249,194,89,0.10);
  transition: max-height 0.22s cubic-bezier(.46,1.35,.56,1);
}

/* CONTACT QUICK SECTION */
.content-wrapper > ul li, .text-section ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.content-wrapper > ul li img, .text-section ul li img {
  width: 28px; height: 28px;
}

/* FOOTER */
footer {
  background: #31507A;
  color: #fff;
  padding: 34px 0 14px 0;
  margin-top: 48px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -7px 17px 0 rgba(49,80,122,0.09);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
}
footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
footer nav a {
  color: #F8C259;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 7px 11px;
  transition: background 0.16s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: #F8C259;
  color: #31507A;
}
.footer-contact p {
  color: #fff;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 9999;
  background: #FFF3D6;
  color: #233149;
  box-shadow: 0 -2px 22px 0 rgba(249,194,89,0.18);
  padding: 22px 18px 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadein-up 0.9s;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner__text {
  font-size: 1rem;
  color: #31507A;
  flex: 1 1 200px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner__btn {
  background: #F8C259;
  border: none;
  color: #31507A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 9px 24px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
  margin-bottom: 2px;
}
.cookie-banner__btn--settings {
  background: #fff;
  border: 2px solid #F8C259;
  color: #31507A;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: #FF7043;
  color: #fff;
  outline: none;
}
.cookie-banner__btn--settings:hover, .cookie-banner__btn--settings:focus {
  background: #F8C259;
  color: #fff;
  border-color: #FF7043;
}
/* Hide banner by default, show with .active (add via JS) */
.cookie-banner {
  display: none;
}
.cookie-banner.active {
  display: flex;
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,37,37,0.55);
  z-index: 11110;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__dialog {
  background: #fff7e0;
  border-radius: 20px;
  box-shadow: 0 8px 40px 0 rgba(249,194,89,0.18);
  padding: 32px 20px 22px;
  width: 96vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadein-up 0.7s;
  color: #31507A;
  font-family: 'Montserrat', Arial,sans-serif;
}
.cookie-modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-pref-group {
  background: #FFF3D6;
  border-radius: 13px;
  margin: 7px 0;
  padding: 10px 15px;
  display: flex; flex-direction: column; gap: 7px;
}
.cookie-pref-group strong {
  color: #E64980;
  font-size: 1.05em;
}
.cookie-pref-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-pref-toggle {
  width: 36px; height: 20px;
  background: #F8C259;
  border-radius: 20px;
  position: relative;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-pref-toggle[aria-checked="false"] {
  background: #ddd;
}
.cookie-pref-toggle .toggle-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s cubic-bezier(.4,1,.5,1.1);
}
.cookie-pref-toggle[aria-checked="true"] .toggle-thumb {
  left: 18px;
}
.cookie-modal__footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-modal__btn {
  background: #F8C259;
  color: #31507A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  padding: 8px 22px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-modal__btn.cookie-modal__btn--cancel {
  background: #fff;
  border: 2px solid #F8C259;
  color: #31507A;
}
.cookie-modal__btn:hover, .cookie-modal__btn:focus {
  background: #FF7043;
  color: #fff;
}
.cookie-modal__btn.cookie-modal__btn--cancel:hover, .cookie-modal__btn.cookie-modal__btn--cancel:focus {
  background: #F8C259;
  color: #fff;
}

/* MICRO-ANIMATIONS & EFFECTS */
@keyframes fadein-up {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: none; }
}

@keyframes pulsePop {
  0% { transform: scale(1) rotate(-2deg); }
  55% { transform: scale(1.06) rotate(2deg); }
  100% { transform: scale(1) rotate(-2deg); }
}
.feature-list li:hover, .service-items > div:hover, .card-container .card:hover {
  animation: pulsePop 0.36s 1;
}

/* UTILITIES FOR SPACING */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mb-2 { margin-bottom: 2px; }
.mb-4 { margin-bottom: 4px; }
.mt-4 { margin-top: 4px; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }

/* CATEGORIES FILTER (Blog) */
.categories-filter {
  margin-top: 17px;
  font-size: 1.08rem;
  color: #31507A;
  font-family: 'Montserrat', Arial, sans-serif;
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.categories-filter a {
  color: #E64980;
  font-weight: 600;
  border-radius: 12px;
  padding: 5px 12px;
  background: rgba(246,168,89,0.08);
  margin-left: 4px;
  transition: background 0.14s, color 0.12s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #F8C259;
  color: #fff;
}

/* -------------------
   RESPONSIVE DESIGN
-------------------- */
@media (max-width: 1023px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .section, section {
    padding: 32px 9px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-card, .feature-list li, .service-items > div, .destination-grid li, .story-carousel > div, .card {
    max-width: 98vw;
    min-width: 120px;
    padding: 18px 7px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.18rem; }
  .section, section {
    padding: 14px 2px;
    margin-bottom: 32px;
  }
  .content-wrapper, .card-container, .testimonials, .blog-preview,
  .feature-list, .service-items, .service-list, .destination-grid, .blog-list, .story-carousel {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card, .feature-list li, .service-items > div, .destination-grid li, .story-carousel > div, .card {
    max-width: 97vw;
    min-width: 70vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer-contact p { text-align: left; font-size: 0.9rem; }
  footer .container, header .container { flex-direction: column; align-items: stretch; gap: 11px; }
}

@media (max-width: 520px) {
  .section, section {
    padding: 8px 1px;
    margin-bottom: 22px;
  }
  .cookie-modal__dialog { padding: 14px 5px 7px; }
  .testimonial-card { padding: 14px 7px; }
  .card, .story-carousel > div { padding: 10px 4px; }
  header img { height: 32px; }
}

/* --------------
   ACCESSIBILITY
--------------- */
a:focus-visible, .cta-btn:focus-visible { outline: 3px solid #47A0F3; outline-offset: 2px; }

/* --------------
   SCROLLBARS
--------------- */
body, * {
  scrollbar-width: thin;
  scrollbar-color: #F8C259 #F9F6F0;
}
::-webkit-scrollbar { width: 9px; background: #F9F6F0; }
::-webkit-scrollbar-thumb { background: #F8C259; border-radius: 5px; }

/* -----------
   ETC 
----------- */
hr {
  border: none;
  height: 2px;
  background: #F8C259;
  margin: 26px 0 16px 0;
  border-radius: 5px;
}

/* END */