/* ====================================================== */
/* CSS 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Merriweather', 'Georgia', Times, serif;
  background: #F7F8FA;
  color: #233041;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205C97;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B600;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
:focus {
  outline: 2px solid #205C97;
  outline-offset: 2px;
}

/* ====================================================== */
/* Typography - Elegant Classic Proportions */
/* ====================================================== */
h1 {
  font-family: 'DM Serif Display', 'Georgia', Times, serif;
  font-size: 2.25rem;
  line-height: 1.125;
  color: #205C97;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Merriweather', 'Georgia', Times, serif;
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 400;
  color: #205C97;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Merriweather', 'Georgia', Times, serif;
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 500;
  color: #205C97;
}
h4 {
  font-family: 'Merriweather', 'Georgia', Times, serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 500;
}
p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #233041;
}
strong {
  font-weight: 600;
}

/* ====================================================== */
/* Brand container & classic layout spacing */
/* ====================================================== */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(32, 92, 151, 0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 34px;
    border-radius: 10px;
  }
}

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

/* ====================================================== */
/* Header & Navigation (Desktop & Mobile) */
/* ====================================================== */
header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(32, 92, 151, 0.06);
  position: relative;
  z-index: 100;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.logo-link img {
  height: 38px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-family: 'Merriweather', 'Georgia', Times, serif;
  font-size: 1rem;
  color: #233041;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a.cta-btn {
  background: #205C97;
  color: #fff;
  border-radius: 30px;
  padding: 8px 26px 8px 26px;
  margin-left: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(32,92,151,0.09);
  transition: background 0.17s, box-shadow 0.17s;
  border: none;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #F7B600;
  color: #1c324e;
  box-shadow: 0 4px 18px rgba(247,182,0,0.18);
  text-decoration: none;
}
.main-nav a:hover, .main-nav a:focus {
  color: #205C97;
  border-bottom: 2px solid #205C97;
}

.mobile-menu-toggle {
  display: none;
  background: #205C97;
  color: #fff;
  font-size: 1.8rem;
  padding: 8px 17px;
  border-radius: 40px;
  outline: none;
  margin-left: 20px;
  transition: background 0.2s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F7B600;
  color: #1c324e;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.25s cubic-bezier(.61,.03,.4,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  box-shadow: 4px 0 18px rgba(32,92,151,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 2rem;
  background: #E9F4FB;
  color: #205C97;
  border-radius: 50%;
  padding: 5px 13px;
  box-shadow: 0 2px 8px rgba(32,92,151,0.14);
  border: none;
  transition: background 0.17s, color 0.18s;
  z-index: 1010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F7B600;
  color: #fff;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  gap: 24px;
  align-items: flex-start;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Merriweather', 'Georgia', Times, serif;
  font-size: 1.1rem;
  color: #233041;
  padding: 10px 0;
  transition: color 0.17s;
  width: 96vw;
  max-width: 96vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #205C97;
  background: #E9F4FB;
  border-radius: 16px;
  padding-left: 12px;
}
@media (min-width: 991px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
}

/* ====================================================== */
/* Hero Section */
/* ====================================================== */
.hero {
  background: #E9F4FB;
  border-radius: 0 0 36px 36px;
  margin-bottom: 48px;
  padding-top: 44px;
  padding-bottom: 44px;
  box-shadow: 0 4px 24px 0 rgba(32,92,151, 0.10);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.4rem;
  font-family: 'DM Serif Display', 'Georgia', serif;
  color: #205C97;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-bottom: 10px;
}
.hero h2 {
  color: #344869;
  font-size: 1.35rem;
  margin-bottom: 18px;
  max-width: 720px;
  font-weight: 400;
}
.hero .cta-btn {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 28px;
    border-radius: 0 0 20px 20px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero h2 {
    font-size: 1rem;
  }
}

/* ====================================================== */
/* Elegant Buttons */
/* ====================================================== */
.cta-btn, .cta-block a.cta-btn {
  display: inline-block;
  font-family: 'Merriweather', 'Georgia', Times, serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 9px 34px;
  border-radius: 40px;
  background: #205C97;
  color: #fff;
  box-shadow: 0 2px 8px rgba(32, 92, 151, 0.14);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.21s, color 0.15s, box-shadow 0.22s, transform 0.10s;
  margin-top: 16px;
  text-align: center;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus, .cta-block a.cta-btn:hover, .cta-block a.cta-btn:focus {
  background: #F7B600;
  color: #233041;
  box-shadow: 0 8px 30px rgba(247,182,0,0.12);
  transform: translateY(-2px) scale(1.03);
}

/* ============================================================ */
/* Features, Cards, Content Grids, Testimonials - Flexbox Only! */
/* ============================================================ */
.features .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding-left: 0;
  margin-bottom: 10px;
  list-style: none;
}
.features .content-wrapper ul li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #F7F8FA;
  border-radius: 13px;
  padding: 16px 22px;
  margin-bottom: 0;
  font-size: 1rem;
  color: #20456d;
  box-shadow: 0 1px 3px 0 rgba(32,92,151,.04);
  min-width: 220px;
  min-height: 48px;
}
.features .content-wrapper ul li img {
  width: 28px;
  height: 28px;
}

.card-container, .blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(32,92,151, 0.09);
  padding: 24px 22px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 320px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 34px 0 rgba(32,92,151,0.18);
  transform: translateY(-6px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .features .content-wrapper ul {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .blog-posts-grid, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F8FA;
  padding: 15px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(32,92,151,0.05);
}

/* ------------------------------------------------------ */
/* Testimonials - Distinctive Cards, High Contrast         */
/* ------------------------------------------------------ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #E3EAF1;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 22px rgba(32,92,151,0.07);
  max-width: 600px;
  color: #1e3045 !important;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.05rem;
  color: #254167;
  margin-bottom: 8px;
}
.testimonial-meta {
  color: #757C86;
  font-size: 0.96rem;
  font-family: 'Merriweather', 'Georgia', Times, serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.review-summary, .star-rating-summary, .short-reviews, .destinations-star-ratings {
  background: #E9F4FB;
  color: #205C97;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 1rem;
  margin-top: 12px;
  display: inline-block;
  font-weight: 700;
  font-family: 'Merriweather', 'Georgia', serif;
}

/* ======================================================== */
/* Services & About, Cards, Deal Highlights etc.            */
/* ======================================================== */
.services .content-wrapper ul,
.about .content-wrapper ul,
.services .deal-highlights ul,
.deal-highlights ul,
.editor-choices ul,
.reasons ul {
  list-style: disc inside;
  margin: 0 0 10px 0;
  padding: 0 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.services .content-wrapper {
  gap: 16px;
}
.highlighted-destinations,
.deal-highlights {
  background: #F7F8FA;
  color: #205C97;
  border-radius: 12px;
  padding: 12px 18px 12px 18px;
  font-weight: 500;
  margin: 18px 0 12px 0;
  font-size: 1rem;
  font-family: 'Merriweather', 'Georgia', Times, serif;
}
.company-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #E9F4FB;
  color: #205C97;
  border-radius: 9px;
  padding: 8px 23px;
  margin: 16px 0 0 0;
  font-size: 1rem;
  font-family: 'Merriweather', 'Georgia', Times, serif;
  box-shadow: 0 1px 7px rgba(32,92,151,0.06);
}
.company-badge img {
  width: 24px;
  height: 24px;
}

/* Blog categories + editor choices */
.categories {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.categories a {
  background: #E9F4FB;
  color: #205C97;
  border-radius: 7px;
  padding: 2px 14px;
  margin-left: 5px;
  font-size: 0.98rem;
  transition: background 0.14s, color 0.14s;
}
.categories a:hover, .categories a:focus {
  background: #205C97;
  color: #fff;
}
.editor-choices h4 {
  margin-bottom: 5px;
}

/* ====================================================== */
/* Footer */
/* ====================================================== */
footer {
  background: #205C97;
  color: #fff;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 24px rgba(32,92,151, 0.08);
  padding: 0 0 5px 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid #E9F4FB22;
  padding-top: 32px;
  padding-bottom: 20px;
}
.footer-top a img {
  height: 38px;
}
.footer-menu {
  display: flex;
  gap: 26px;
}
.footer-menu a {
  color: #E9F4FB;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F9C846;
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0 13px 0;
  font-size: 1rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #233041;
  font-size: 1rem;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-info img {
  width: 19px;
  height: 19px;
}
.footer-copy {
  color: #E9F4FB;
  font-size: 0.99rem;
  align-self: flex-end;
  text-align: right;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer-top, .footer-menu, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-copy {
    text-align: left;
    margin-left: 0;
    margin-top: 12px;
  }
}

/* ====================================================== */
/* Cookie Consent Banner & Modal                         */
/* ====================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #233041;
  box-shadow: 0 -6px 34px rgba(32, 92, 151, 0.14);
  padding: 24px 12px 17px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  z-index: 2000;
  border-radius: 22px 22px 0 0;
  animation: cookie-slide-in 0.5s cubic-bezier(.58,.02,.53,.94);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__content {
  font-size: 1rem;
  max-width: 700px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  background: #205C97;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Merriweather', 'Georgia', Times, serif;
  padding: 6px 20px;
  font-size: 1rem;
  cursor: pointer;
  margin: 0;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  box-shadow: 0 2px 8px rgba(32,92,151,0.13);
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: #F9C846;
  color: #233041;
  box-shadow: 0 4px 16px rgba(247,182,70,0.13);
}
.cookie-settings-btn {
  background: #E9F4FB;
  color: #205C97;
  border: 1px solid #E3EAF1;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #205C97;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 2500;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,92,151,0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px 26px 28px;
  max-width: 375px;
  min-width: 260px;
  box-shadow: 0 8px 44px rgba(32,92,151, 0.21);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-fade-in 0.41s cubic-bezier(.61,.03,.4,.99);
}
@keyframes modal-fade-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal__header {
  font-family: 'Merriweather', 'Georgia', Times, serif;
  font-size: 1.18rem;
  color: #205C97;
  margin-bottom: 7px;
  font-weight: 500;
}
.cookie-modal__close {
  position: absolute;
  top: 35px; right: 40px;
  font-size: 1.7rem;
  background: #E9F4FB;
  color: #205C97;
  border: none;
  border-radius: 50%;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #F7B600;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category__label {
  flex: 1;
  font-size: 1rem;
}
.cookie-category__toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #E9F4FB;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
  margin-right: 2px;
}
.cookie-category__toggle:checked {
  background: #205C97;
}
.cookie-category__toggle:after {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  transition: left 0.17s;
}
.cookie-category__toggle:checked:after {
  left: 22px;
}
.cookie-category--essential .cookie-category__toggle {
  background: #205C97 !important;
  pointer-events: none;
}
.cookie-category--essential .cookie-category__toggle:after {
  left: 22px;
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 540px) {
  .cookie-banner {
    font-size: 0.97rem;
    padding: 16px 5px 14px 5px;
    border-radius: 14px 14px 0 0;
  }
  .cookie-modal__dialog {
    padding: 19px 7px 13px 11px;
    min-width: 200px;
    max-width: 98vw;
  }
}

/* ====================================================== */
/* Utility/Helpers & Micro-interactions                   */
/* ====================================================== */
@media (max-width: 990px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
::-webkit-scrollbar {
  width: 9px; background: #E9F4FB;
}
::-webkit-scrollbar-thumb {
  background: #205C97; border-radius: 6px;
}

/* Subtle hover shadow for links+cards */
a, .card, .cta-btn, .cookie-banner__btn {
  transition: box-shadow 0.16s, color 0.12s, background 0.15s, border-color 0.15s, transform 0.12s;
}
.card:hover, .card:focus-within,
.cta-btn:hover, .cta-btn:focus,
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  filter: drop-shadow(0px 6px 24px rgba(32,92,151,0.09));
}

/* ========== Forms (if present) ========== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 12px;
  background: #fff;
  color: #233041;
  transition: border 0.18s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #205C97;
}

/* Classic quote style for blockquote*/
blockquote {
  font-family: 'Merriweather', 'Georgia', Times, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #205C97;
  background: #F7F8FA;
  border-left: 5px solid #F7B600;
  margin: 19px 0;
  padding: 13px 25px;
  border-radius: 9px;
}

/* ============ Accessibility ============= */
[tabindex="0"]:focus,
[tabindex]:focus {
  outline: 2px solid #F7B600 !important;
  outline-offset: 3px;
}

/* ============ Classic elegant spacings ============= */
.section h1, .section h2, .section h3 { margin-top: 0; }
.card + .card { margin-top: 20px; }
.section + .section { margin-top: 60px; }

/* Responsive tweak for main sections & hero */
@media (max-width: 540px) {
  .section, .hero {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* Highlight styles for alerts/info */
.info, .privacy-policy, .terms, .about-short {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(32,92,151,0.05);
  padding: 36px 22px;
}

/* ============ Subtle fade-in for page elements ============ */
@media (prefers-reduced-motion: no-preference) {
  .section, .hero, .card, .testimonial-card, .cta-btn {
    opacity: 0;
    animation: fadeInUp 0.78s cubic-bezier(.61,.01,.35,.99) 0.05s forwards;
  }
  .section:nth-child(2) { animation-delay: 0.15s; }
  .section:nth-child(3) { animation-delay: 0.27s; }
  .section:nth-child(4) { animation-delay: 0.44s; }
  .section:nth-child(5) { animation-delay: 0.57s; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Miscellaneous ============ */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you h1 {
  color: #205C97;
  font-family: 'DM Serif Display', 'Georgia', Times, serif;
}

/* ========== Print ========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main { margin: 0; padding: 0; }
}

/* ========== Elegant empty/fallback card ========== */
.empty-card {
  background: #E9F4FB;
  border-radius: 10px;
  color: #8ca1b5;
  padding: 18px 24px;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 18px;
}

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