/*-----------------------------*
  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 {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  background: #f1faee;
  color: #2d2a28;
  font-family: 'Montserrat', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
  background-image: repeating-linear-gradient(135deg, #f1faee 0px, #f1faee 20px, #e5d7cc 20px, #e5d7cc 40px);
}

*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  margin-left: 1.1em;
}
a {
  color: #e76f51;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #264653;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* Font faces - import in HTML or via @import for demo purposes only */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #264653;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p, ul, ol, li, span, blockquote, table {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2d2a28;
}
p, ul, ol { margin-bottom: 16px; }
strong { color: #e76f51; font-weight: 700; }

em { font-style: italic; }

blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  background: #fdf6e3;
  border-left: 5px solid #e76f51;
  font-style: italic;
  color: #264653;
}

hr {
  border: 0;
  border-top: 1px dashed #e76f51;
  margin: 30px 0;
}

/*-----------------------------*
  VINTAGE RETRO COLOR PALLETTE
*-------------------------------*/
:root {
  --retro-main-bg: #f1faee;
  --retro-card-bg: #fdf6e3;
  --retro-primary: #264653;
  --retro-secondary: #e76f51;
  --retro-accent: #ffe066;
  --retro-accent-alt: #e9c46a;
  --retro-shadow: rgba(38,70,83,0.08);
  --retro-border: #c4b197;
  --retro-card-pattern: repeating-linear-gradient(-45deg, #fff6e7 0, #fff6e7 8px, #f5e6cf 9px, #f5e6cf 16px);
}

/*-----------------------------*
  LAYOUT: CONTAINER & SPACING
*-------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* For .card-container (not in supplied HTML but as per pattern) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--retro-card-bg);
  box-shadow: 0 2px 15px var(--retro-shadow);
  border-radius: 16px;
  border: 2px solid var(--retro-border);
  padding: 28px 22px;
  overflow: hidden;
}
.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;
  margin-bottom: 20px;
  background: #fff6e7;
  border-radius: 16px;
  border: 1px solid #dec4a4;
  box-shadow: 0 1.5px 7px 0 var(--retro-shadow);
  font-size: 1.05rem;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 2.5px 16px 0 rgba(231,111,81,0.18);
  transform: translateY(-2px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 0 0;
}
.features-row > div {
  background: var(--retro-accent-alt);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 500;
  border: 1.5px solid #ceb17e;
  color: #264653;
  min-width: 220px;
  box-shadow: 0 1px 3px 0 var(--retro-shadow);
}

.quick-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.quick-contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  background: #fdf8eb;
  border-radius: 7px;
  padding: 9px 16px;
  color: #274353;
}

.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.contact-info-block > div {
  flex: 1 1 180px;
  background: #f1e3cf;
  border-radius: 10px;
  padding: 13px 18px;
  color: #423000;
  box-shadow: 0 1.5px 7px 0 var(--retro-shadow);
}
.align-center {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 60px auto 0 auto;
  padding: 50px 20px;
  background: var(--retro-card-bg);
  border-radius: 24px;
  box-shadow: 0 2px 15px var(--retro-shadow);
  border: 2px solid var(--retro-border);
}

/*-----------------------------*
  MAIN STRUCTURAL LAYOUTS
*-------------------------------*/
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 10px 0;
  gap: 16px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  padding: 32px 0 20px 0;
  border-top: 3px dashed #e76f51;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}
.footer-nav a {
  font-size: 15px;
  color: #264653;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  opacity: 0.8;
  padding-bottom: 2px;
  transition: color 0.15s, border-bottom 0.15s;
  border-bottom: 1.5px dashed transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #e76f51;
  border-bottom: 1.5px dashed #e76f51;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #264653;
}
.footer-contact span {
  font-size: 13px;
  color: #8c8c8c;
  margin-top: 7px;
}

.logo-link img {
  height: 56px;
  display: block;
  transition: transform 0.16s;
}
.logo-link:hover img {
  transform: rotate(-5deg) scale(1.07);
}

header {
  background-color: #ffe066;
  background-image: repeating-linear-gradient(-34deg, #ffe066 0px, #ffe066 30px, #f9d087 31px, #f9d087 60px);
  border-bottom: 5px double #264653;
  box-shadow: 0 9px 22px -21px rgba(38,70,83,0.09);
  position: relative;
  z-index: 30;
}

/*-----------------------------*
  NAVIGATION (DESKTOP)
*-------------------------------*/
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #264653;
  padding: 8px 10px;
  border-radius: 7px;
  background: transparent;
  transition: background .13s, color .16s;
  border-bottom: 2.5px solid transparent;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: #fdf6e3;
  color: #e76f51;
  border-bottom: 2.5px solid #e76f51;
}
.cta-primary {
  background: #e76f51;
  color: #fff6e2 !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 28px;
  border: none;
  box-shadow: 0 6px 32px -24px #e76f51;
  margin-left: 8px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  text-shadow: 0 1px 1px #b05943;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #264653;
  color: #ffd5b8 !important;
  box-shadow: 0 2px 9px -2px #e76f51;
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/*-----------------------------*
      HERO SECTION
*-------------------------------*/
.hero-section {
  background: repeating-linear-gradient(195deg, #fdf6e3 0, #fdf6e3 60px, #e5d7cc 61px, #e5d7cc 120px);
  border-bottom: 4px dashed #e76f51;
  padding: 60px 0 55px 0;
  min-height: 350px;
  display: flex;
  align-items: center;
}
.hero-section h1 {
  font-size: 2.6rem;
  font-family: 'Playfair Display', serif;
  color: #e76f51;
  text-shadow: 0 4px 16px #ffe06666;
  margin-bottom: 18px;
  letter-spacing: 0.015em;
}
.hero-section p {
  font-size: 1.25rem;
  color: #264653;
  max-width: 550px;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero-section .cta-primary {
  margin-top: 10px;
}

/*-----------------------------*
      LIST / UL DECORATION
*-------------------------------*/
ul {
  padding-left: 20px;
  list-style-type: disc;
}
ul > li {
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding-left: 0px;
}
ul > li > img {
  width: 24px;
  height: 24px;
  margin-right: 7px;
  vertical-align: middle;
  border-radius: 5px;
  box-shadow: 0 1px 4px 0 #eddab6;
  border: 1px solid #ebdac2;
  background: #ffeabb;
}
li strong {
  color: #a6611a;
  font-family: 'Playfair Display', serif;
  font-size: 1.08em;
  font-weight: bold;
}

/* FAQ List */
.faq-list {
  list-style-type: none;
  padding-left: 0;
}
.faq-list > li {
  margin-bottom: 22px;
  padding: 17px 26px 14px 26px;
  background: #ffeabb;
  border-left: 5px solid #e76f51;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 5px 0 var(--retro-shadow);
}
.faq-list > li span {
  color: #264653;
  font-size: 1.02rem;
}

/* inspiration-note on gallery */
.inspiration-note {
  font-family: 'Playfair Display', serif;
  color: #a8833f;
  font-size: 1.12rem;
  margin: 12px 0 0;
  letter-spacing: 0.03em;
  background: #ffeabb;
  border-radius: 9px;
  padding: 8px 18px;
  display: inline-block;
}

/*-----------------------------*
  SUMMARY RATING/REVIEW
*-------------------------------*/
.summary-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  background: #ffeabb;
  border-radius: 9px;
  padding: 8px 18px;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 18px;
  font-weight: 600;
  max-width: fit-content;
  box-shadow: 0 1px 4px 0 var(--retro-shadow);
}
.summary-rating img {
  width: 26px; height: 26px;
}

/*-----------------------------*
  BUTTONS & INTERACTIVE
*-------------------------------*/
button, .cta-primary {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  appearance: none;
}
button {
  background: none;
  font-size: 1rem;
}

/*-----------------------------*
  MOBILE NAVIGATION
*-------------------------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #e76f51;
  background: #f1faee;
  border-radius: 7px;
  padding: 7px 13px 7px 13px;
  margin-left: 10px;
  border: 2px solid #e76f51;
  transition: background 0.17s, color 0.17s;
  z-index: 51;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e76f51;
  color: #fff6e2;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fdf6e3;
  box-shadow: 0 0 0 2900px rgba(38,70,83,0.15);
  transform: translateX(100vw);
  transition: transform 0.37s cubic-bezier(.82,-0.05,.36,1.05);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 2rem;
  background: #e76f51;
  color: #fff6e2;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  z-index: 1200;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #264653;
  color: #ffe066;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 50px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  padding: 12px 0;
  color: #e76f51;
  border-radius: 9px;
  width: 100%;
  text-align: center;
  text-shadow: 0 2px 13px #fed59499;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #264653;
  color: #ffe066;
}

/* Hide .main-nav on mobile, show burger */
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
}

/*-----------------------------*
  RESPONSIVE DESIGN PATTERNS
*-------------------------------*/
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .footer-flex { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
  .card, .confirmation {
    padding: 18px 8px;
    border-radius: 13px;
  }
  .footer-flex, .header-flex, .quick-contact-info, .features-row, .contact-info-block {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card-container, .content-grid, .content-wrapper, .text-image-section {
    flex-direction: column!important;
    gap: 16px;
  }
  .align-center {
    text-align: center;
    align-items: center!important;
  }
  .logo-link img {
    height: 44px;
  }
  .hero-section {
    padding: 38px 0 32px 0;
    min-height: 200px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.48rem; }
  .mobile-nav a {
    font-size: 20px;
    padding: 10px 0;
  }
}
@media (max-width: 500px) {
  .container { padding: 0 2vw; }
  .footer-flex { padding: 24px 0 12px 0; }
}

/*-----------------------------*
  COOKIE CONSENT BANNER
*-------------------------------*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fdf6e3;
  box-shadow: 0 -4px 18px 0 rgba(38, 70, 83, 0.13), 0 0 0 2000px rgba(38, 70, 83, 0.04);
  padding: 24px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 8000;
  gap: 18px;
  font-size: 1rem;
  animation: banner-in 0.55s cubic-bezier(.68, 0, .28, 1.05);
}
@keyframes banner-in {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
  margin-bottom: 8px;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}
.cookie-btn {
  background: #e76f51;
  color: #fff6e2;
  border-radius: 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border: 1.5px solid #e76f51;
  margin-right: 3px;
  transition: background 0.17s, color 0.17s, border 0.13s;
  box-shadow: 0 2px 10px -3px #e76f51;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #264653;
  color: #ffe066;
  border: 1.5px solid #264653;
}
.cookie-btn-secondary {
  background: #ffe066;
  color: #264653;
  border: 1.5px solid #e9c46a;
  box-shadow: 0 1px 7px -3px #c2b17a;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #264653;
  color: #ffe066;
  border: 1.5px solid #264653;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,70,83,.4);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlay-in 0.3s cubic-bezier(.68, 0, .28, 1.05);
}
@keyframes overlay-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fdf6e3;
  border-radius: 14px;
  box-shadow: 0 6px 48px 0 rgba(38,70,83,0.13);
  min-width: 315px;
  max-width: 94vw;
  max-height: 92vh;
  padding: 30px 28px 24px 28px;
  overflow-y: auto;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: modal-in 0.39s cubic-bezier(.67,0, .22,1.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes modal-in {
  0% { transform: translateY(44px) scale(0.97); opacity:0; }
  100% { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-family: 'Playfair Display', serif;
  color: #e76f51;
  margin-bottom: 8px;
  font-size: 1.44rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0 8px 0;
  border-bottom: 1px dashed #dec4a4;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-switch {
  width: 36px; height: 20px;
  background: #e9c46a;
  border-radius: 12px;
  position: relative;
  margin-left: 8px;
  transition: background 0.19s;
  flex-shrink: 0;
}
.cookie-switch[data-checked="true"] {
  background: #e76f51;
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  background: #fff6e2;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 3px;
  transition: left 0.19s;
  box-shadow: 0 1px 4px #d8b884be;
}
.cookie-switch[data-checked="true"]:before {
  left: 17px;
}

.cookie-modal-close {
  position: absolute;
  top: 13px; right: 17px;
  font-size: 2.1rem;
  background: #e76f51;
  color: #fff6e6;
  border-radius: 50%;
  width: 34px; height: 34px; border: none;
  z-index: 9999;
  line-height: 1.2; text-align: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #264653;
  color: #ffe066;
}

.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 18px 10px 16px 16px;
  }
  .cookie-modal h2 {
    font-size: 1.15rem;
  }
}

/*-----------------------------*
  LEGAL TEXT STYLING
*-------------------------------*/
.legal {
  font-size: 1.02rem;
  color: #353433;
  background: #fff6e7;
  border-radius: 14px;
  padding: 34px 23px 25px 24px;
  border: 1px solid #e5d7cc;
  box-shadow: 0 2px 14px 0 var(--retro-shadow);
}
.legal h2, .legal h3 {
  margin: 22px 0 7px 0;
  color: #e76f51;
  font-size: 1.21rem;
}
.legal ul {
  margin: 0 0 14px 18px;
}


/*-----------------------------*
  MISC RETRO/DECORATIVE DETAILS
*-------------------------------*/
.card {
  background-image: var(--retro-card-pattern);
}
.testimonial-card {
  background: #fffbe7;
  border-left: 5px solid #e76f51;
}
.text-section ul {
  list-style: none;
  padding-left: 0;
}
.text-section ul li {
  padding-left: 0px;
  margin-bottom: 13px;
  position: relative;
}
.text-section ul li strong {
  color: #a6611a;
}
.text-section.align-center {
  align-items: center;
  justify-content: center;
}

/* Underline on links inside paragraphs */
p a, .content-wrapper a, .text-section a:not(.cta-primary) {
  border-bottom: 2px dashed #e76f51;
  font-weight: 600;
  color: #e76f51;
  background: none;
  padding: 1px 0;
}
p a:hover, .content-wrapper a:hover, .text-section a:not(.cta-primary):hover {
  color: #264653;
  background: none;
  border-bottom: 2px solid #264653;
}

/*-----------------------------*
  FOCUS VISIBILITY
*-------------------------------*/
a:focus, button:focus, .cta-primary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .cookie-modal-close:focus {
  outline: 2.5px solid #2d9c77;
  outline-offset: 2px;
}

/*-----------------------------*
      OVERRIDE SPACING (MANDATORY)
*-------------------------------*/
.card, .testimonial-card, .section, .content-wrapper > * {
  margin-bottom: 20px;
}
:last-child, .content-wrapper > :last-child, .section:last-child, .card:last-child, .testimonial-card:last-child {
  margin-bottom: 0 !important;
}

/*-----------------*
  PRINT OPTIMIZED  
*-----------------*/
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited { color: #000 !important; text-decoration: underline; }
}

