/* =========================
   CSS RESET & 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,
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  min-height: 100vh;
  background: #F9FAFB;
  color: #15334A;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #15334A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E8C07D;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: disc inside;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
/* Remove blue background on button tap on iOS */
input, select, textarea, button {
  -webkit-tap-highlight-color: transparent;
}
hr {
  border: none;
  border-top: 1px solid #EEE;
  margin: 32px 0;
}

/* =========================
   BRAND COLOR VARIABLES
   ========================= */
:root {
  --primary: #15334A;
  --secondary: #CED5C9;
  --accent: #E8C07D;
  --bg-section: #F9FAFB;
  --bg-card: #FFFFFF;
  --text: #15334A;
  --text-light: #738091;
  --border: #E5EAF1;
  --shadow: 0 4px 16px rgba(21,51,74,0.06);
}

/* =========================
   TYPOGRAPHY
   ========================= */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, .hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.12;
  margin-bottom: 20px;
}
h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
h4 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
p, ul li, ol li {
  color: var(--text);
  font-size: 1rem;
}
.subheadline {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 24px;
  font-weight: 400;
  max-width: 650px;
}

/* =========================
   CONTAINER & CONTENTS
   ========================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

/* =========================
   HEADER & NAV
   ========================= */
header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  z-index: 100;
  position: relative;
}
header .container {
  padding: 0 20px;
  height: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
header a.cta-primary {
  margin-left: 16px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 18px;
}


/* =========================
   CTA BUTTONS
   ========================= */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 30px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: none;
  outline: none;
  border: none;
  cursor: pointer;
}
.cta-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(21,51,74,0.07);
}
.cta-primary:hover, .cta-primary:focus {
  background: #10253a;
  color: #FFF;
  box-shadow: 0 4px 16px rgba(21,51,74,.12);
}
.cta-secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(21,51,74,0.08);
}


/* ============================
   HERO SECTION
   ============================ */
.hero {
  background: var(--secondary);
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  border-bottom: 1.5px solid var(--border);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  max-width: 800px;
  margin: auto;
  align-items: flex-start;
  gap: 14px;
}

/* =========================
   FLEX CONTAINER PATTERNS
   ========================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: 16px;
}
/* Card Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 24px 24px 24px;
  position: relative;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px 0 rgba(21,51,74,0.16);
  z-index: 1;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.testimonial-card {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(21,51,74,.07);
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 400px;
  color: var(--text);
  font-size: 1.0625rem;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 20px rgba(21,51,74,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =========================
   INDEX PAGE FEATURES GRID
   ========================= */
.features {
  background: #fff;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features .feature {
  background: var(--secondary);
  border-radius: 12px;
  padding: 26px 18px 20px 18px;
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(21,51,74,0.04);
  gap: 10px;
  transition: box-shadow 0.16s;
}
.features .feature:hover, .features .feature:focus {
  box-shadow: 0 4px 28px 0 rgba(21,51,74,0.14);
}
.features .feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

/* Main Callouts */
.services, .signature-journeys, .featured-destinations, .luxury-experiences {
  background: #fff;
}
.services .service-highlights,
.signature-journeys .journey-list,
.luxury-experiences .experience-grid,
.featured-destinations .destination-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.services .service, .signature-journeys li, .luxury-experiences .experience, .featured-destinations .destination {
  background: var(--secondary);
  border-radius: 11px;
  padding: 24px 18px 18px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 285px;
  box-shadow: 0 2px 8px rgba(21,51,74,0.07);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.18s;
}
.services .service:hover, .luxury-experiences .experience:hover, .featured-destinations .destination:hover {
  box-shadow: 0 4px 20px 0 rgba(21,51,74,0.13);
}
.luxury-experiences .experience img, .features .feature img, .journey-benefits .feature img, .why-choose-us .feature img {
  width: 35px;
  height: 35px;
  margin-bottom: 11px;
  filter: grayscale(30%);
}

/* Testimonial Grid / Story Grid */
.testimonial-grid, .story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}

/* Simple Feature Lists */
.feature-list, .journey-list, .experience-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.feature-list li, .journey-list li, .experience-list li {
  background: #f4f7fa;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 1rem;
}

/* =========================
   ABOUT PAGE TEXT SECTION
   ========================= */
.text-section {
  width: 100%;
  background: none;
  margin-bottom: 20px;
  padding: 0;
  font-size: 1rem;
}
.text-section h3 {
  margin-top: 8px;
  margin-bottom: 10px;
}

/* =========================
   CONTACT INFO & MAP
   ========================= */
.contact-info .map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--text-light);
  height: 110px;
  border-radius: 9px;
  margin-top: 18px;
  font-size: 1rem;
  font-style: italic;
}

/* =========================
   POLICY PAGE (LEGAL DOCS)
   ========================= */
.policy {
  background: #fff;
}
.policy .content-wrapper, .policy .text-section {
  max-width: 840px;
}
.policy h1 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
}
.policy h2 {
  font-size: 1.25rem;
  margin-top: 18px;
}
.policy ul li {
  margin-bottom: 10px;
}

/* =========================
   THANK YOU PAGE
   ========================= */
.thankyou .next-steps {
  margin: 34px 0 20px 0;
}
.thankyou .next-steps h2 {
  font-size: 1.25rem;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--primary);
  color: #fff;
  border-top: 2.5px solid var(--accent);
  padding-top: 38px;
  padding-bottom: 0;
  margin-top: 48px;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-logo img {
  width: 54px;
  height: auto;
  margin-bottom: 14px;
}
.footer-contact, .footer-links, .footer-social {
  min-width: 200px;
  flex: 1 1 200px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact h4, .footer-social h4 {
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 1.0625rem;
}
.footer-contact p, .footer-social a, .footer-links a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.8;
  transition: color 0.16s, opacity 0.12s;
  border-radius: 5px;
  padding: 3px 0;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--accent);
  opacity: 1;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  margin-right: 4px;
  opacity: .93;
  transition: opacity 0.15s, filter 0.15s;
  filter: grayscale(100%) contrast(120%);
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
  filter: none;
}
.footer-bottom {
  border-top: 1px solid rgba(232,192,125,0.11);
  padding: 18px 0 8px 0;
  text-align: center;
  font-size: 0.97rem;
  opacity: .83;
  color: #bbbef0;
}
/* Footer icons inside text */
.footer-contact img {
  width:18px; height:18px; margin-right:5px;
}

/* =========================
   MOBILE MENU
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: var(--primary);
  border: none;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
  transition: color 0.2s, background 0.14s;
  border-radius: 50%;
  z-index: 300;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--accent);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,51,74,0.95);
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.45, 1.4, .7, 1), opacity 0.23s;
  opacity: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #fff;
  align-self: flex-end;
  margin: 22px 22px 8px 0;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.14s, color 0.14s;
  padding: 4px 12px 4px 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(232,192,125,0.22);
  color: var(--accent);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 32px 22px 28px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  padding: 10px 0;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background .14s, color .14s, opacity .13s;
  opacity: 0.97;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  opacity: 1;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: var(--text);
  box-shadow: 0 -2px 16px rgba(21,51,74,.08);
  border-top: 2px solid var(--accent);
  z-index: 12000;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.32s cubic-bezier(.44,1.22,.65,1), opacity 0.25s;
  opacity: 1;
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .banner-message {
  max-width: 700px;
  text-align: center;
}
.cookie-banner .banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 5px;
  padding: 9px 20px;
  margin: 0 2px;
  border: none;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
  white-space: nowrap;
}
.cookie-banner .accept {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1.5px 5.5px rgba(21,51,74,.07);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #10253a;
}
.cookie-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--secondary);
}
.cookie-banner .settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #ffdca7;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  top: 0;
  background: rgba(21,51,74,0.78);
  z-index: 13000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: modal-fade-in 0.47s cubic-bezier(.63,1.42,.54,1);
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #fff;
  padding: 32px 28px;
  border-radius: 14px;
  box-shadow: 0 6px 34px rgba(21,51,74,.14);
  min-width: 300px;
  max-width: 94vw;
  width: 370px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.19rem;
  margin-bottom: 3px;
  color: var(--primary);
}
.cookie-modal .category {
  font-size: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 23px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  border-radius: 32px;
  transition: background 0.16s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: var(--accent);
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(21px);
}
.cookie-modal .always-on {
  font-size: 0.96rem;
  color: #b9bfc8;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none;
  color: var(--primary);
  font-size: 1.45rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 8px;
  opacity: 0.75;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--secondary);
  color: var(--accent);
  opacity: 1;
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
  }
  .content-wrapper {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .features .feature-grid, .services .service-highlights,
  .signature-journeys .journey-list, .luxury-experiences .experience-grid,
  .featured-destinations .destination-grid {
    gap: 18px;
  }
  .testimonial-grid, .story-grid {
    gap: 16px;
  }
  .content-grid {
    gap: 14px;
  }
  footer .content-wrapper {
    gap: 22px;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    min-height: 68px;
    height: auto;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  header a.cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 13px;
  }
  .hero, .section {
    padding: 32px 8px 28px 8px;
    margin-bottom: 36px;
    border-radius: 0;
  }
  .features .feature-grid,
  .services .service-highlights,
  .signature-journeys .journey-list,
  .luxury-experiences .experience-grid,
  .featured-destinations .destination-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-grid, .story-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .footer-logo img {
    margin-bottom: 7px;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cookie-modal .modal-content {
    padding: 18px 10px;
    min-width: 0;
    width: 97vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  html { font-size: 14px; }
  .container {
    padding: 0 5px;
  }
  .cookie-banner {
    padding: 14px 5px 12px 5px;
    font-size: 0.98rem;
  }
  .cookie-banner .banner-message {
    font-size: 0.97rem;
  }
}

/* =========================
   ANIMATIONS & EFFECTS
   ========================= */
.section, .card, .testimonial-card, .feature, .experience, .destination {
  transition: box-shadow 0.17s, transform 0.19s;
}
.card:hover, .feature:hover, .testimonial-card:hover, .experience:hover, .destination:hover {
  transform: translateY(-2px) scale(1.015);
}
.cta-primary, .cta-secondary {
  transition: background 0.2s, color 0.16s, box-shadow 0.15s, transform 0.13s;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.98);
}
.mobile-menu, .cookie-modal, .cookie-banner {
  will-change: transform, opacity;
}

/* =========================
   MISC UTILITY
   ========================= */
.visually-hidden {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =========================
   ENSURE NO OVERLAP—SPACING
   ========================= */
.section > *,
.content-wrapper > *,
.card-container > *,
.card > *,
.content-grid > *,
.feature-grid > *,
.testimonial-grid > *,
.story-grid > *,
.feature-item > *,
.text-image-section > * {
  margin-bottom: 0;
}
.section > * + *,
.content-wrapper > * + *,
.card-container > * + *,
.card > * + *,
.content-grid > * + *,
.feature-grid > * + *,
.testimonial-grid > * + *,
.story-grid > * + *,
.feature-item > * + *,
.text-image-section > * + * {
  margin-top: 18px;
}

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