/*--------------------------------------------------------------
  CSS RESET AND NORMALIZE - LUXURY PREMIUM BASE
--------------------------------------------------------------*/
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, 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 {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #FAFAFA;
  color: #172A3A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  /* Subtle background for luxury */
  background-color: #F6F7F9;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}

a:focus {
  outline: 2px solid #B08631;
  outline-offset: 2px;
}

/*--------------------------------------------------------------
  LUXURY PREMIUM COLORS & TYPOGRAPHY
--------------------------------------------------------------*/
:root {
  --primary: #172A3A;
  --secondary: #B2C3D1;
  --accent: #E37F2E;
  --gold: #B08631;
  --platinum: #F9F6F2;
  --content-bg: #FFF;
  --card-bg: #FAFAFA;
  --shadow: 0 2px 16px 0 rgba(23,42,58,0.09),0 0.5px 2px 0 rgba(176,134,49,0.07);
}

/* Display font for headlines */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.15; margin-bottom: 0.8em; color: var(--primary); }
h2 { font-size: 2rem; margin-bottom: 0.7em; color: var(--primary); }
h3 { font-size: 1.3rem; margin-bottom: 0.5em; color: var(--primary); }
h4 { font-size: 1.1rem; margin-bottom: 0.4em; color: var(--primary); }
p {
  margin-bottom: 1.2em;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}

/* Typography scale responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/*--------------------------------------------------------------
  CONTAINERS & SECTIONS
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--content-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

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

/*--------------------------------------------------------------
  HEADER, NAVIGATION & MOBILE MENU
--------------------------------------------------------------*/
header {
  background: var(--content-bg);
  box-shadow: 0 4px 24px 0 rgba(23,42,58,0.09);
  position: relative;
  z-index: 120;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  position: relative;
}

.main-nav img {
  height: 48px;
  width: auto;
  margin-right: 30px;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-left: 20px;
}

.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.05em;
  padding: 8px 1px;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.25s, color 0.15s;
}

.main-nav ul li a:hover, .main-nav ul li a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 12px 34px;
  box-shadow: 0 2px 14px 0 rgba(176,134,49,0.13);
  letter-spacing: 0.06em;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.22s, color 0.17s, box-shadow 0.2s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A77D2A;
  color: #fffbe8;
  box-shadow: 0 2px 35px 2px rgba(176,134,49,0.15);
}

/* Burger Menu Icon */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  border-radius: 12px;
  padding: 9px 15px;
  box-shadow: 0 1px 13px rgba(176,134,49,0.12);
  cursor: pointer;
  z-index: 150;
  margin-left: 14px;
  transition: background 0.19s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #A77D2A;
  color: #fffbe8;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(23,42,58,0.95);
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.7,0,.3,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  margin: 28px 24px 12px 0;
  cursor: pointer;
  z-index: 10101;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--gold);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  padding: 30px 40px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 8px;
  padding: 10px 7px;
  transition: background 0.18s, color 0.12s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 18px;
  }
  .main-nav img {
    height: 42px;
    margin-right: 10px;
  }
  .cta-btn {
    padding: 11px 24px;
    font-size: 0.97rem;
  }
}

@media (max-width: 940px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 500px) {
  .mobile-menu {
    padding-left: 0;
  }
  .mobile-nav {
    padding: 14px 12px;
    gap: 20px;
  }
  .main-nav img { height: 34px; }
  .mobile-menu-close { margin-right: 12px; margin-top: 14px; font-size: 1.8rem; }
}

/*--------------------------------------------------------------
  HERO SECTION
--------------------------------------------------------------*/
.hero {
  display: flex;
  align-items: center;
  background: var(--content-bg);
  padding-top: 68px;
  padding-bottom: 68px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 640px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.6rem;
  line-height: 1.18;
  margin-bottom: 0.75em;
  word-break: break-word;
}
.hero p {
  color: #2c3540;
  font-size: 1.2rem;
  margin-bottom: 2.2em;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .hero {
    padding-top: 36px;
    padding-bottom: 36px;
    border-radius: 9px;
  }
  .hero .content-wrapper { max-width: 100%; }
  .hero h1 { font-size: 1.45rem; }
}

/*--------------------------------------------------------------
  FEATURE SECTIONS & GRID
--------------------------------------------------------------*/
.feature-grid,
.service-list,
.season-grid,
.occasion-grid,
.style-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-top: 18px;
}
.feature,
.service,
.season-block,
.occasion-block,
.style-block {
  background: var(--platinum);
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(23,42,58,0.07);
  padding: 32px 26px 28px 26px;
  min-width: 190px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
  position: relative;
  transition: transform 0.18s, box-shadow 0.2s;
}
.feature:hover,
.service:hover,
.season-block:hover,
.occasion-block:hover,
.style-block:hover {
  box-shadow: 0 8px 24px rgba(176,134,49,0.13);
  transform: translateY(-4px) scale(1.025);
}

.feature img {
  height: 43px;
  width: 43px;
  margin-bottom: 0.5em;
  filter: brightness(1.1) drop-shadow(0 2px 8px #f0e9d8);
}

.feature h3,.service h3, .season-block h3, .occasion-block h3, .style-block h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.3em;
}
.feature p,.service p, .season-block ul, .occasion-block p, .style-block p {
  color: #37404b;
  font-size: 0.98rem;
  line-height: 1.6;
}
.service span {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: auto;
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .season-grid, .occasion-grid, .style-overview {
    flex-direction: column;
    gap: 24px;
  }
}

/*--------------------------------------------------------------
  GENERAL SECTION LAYOUTS & FLEX CLASSES
--------------------------------------------------------------*/
.section, main section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--content-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--platinum);
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(23,42,58,0.07);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  padding: 26px 18px;
  gap: 13px;
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--------------------------------------------------------------
  TESTIMONIALS & REVIEW CARDS
--------------------------------------------------------------*/
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 16px 0 rgba(23,42,58,0.07);
  padding: 32px 26px;
  min-width: 200px;
  flex: 1 1 280px;
  border-left: 5px solid var(--gold);
  margin-bottom: 20px;
  transition: box-shadow 0.19s;
}
.testimonial-card p {
  color: #232C37;
  font-size: 1.09rem;
  margin-bottom: 0.35em;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #877243;
  margin-top: 7px;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}

@media (max-width: 1024px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 19px;
  }
  .testimonial-card { max-width: 100%; }
}

/*--------------------------------------------------------------
  CTA SECTIONS
--------------------------------------------------------------*/
.cta {
  background: var(--primary);
  color: #fff;
  padding: 32px 0;
  border-radius: 14px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 1px 8px 0 rgba(23,42,58,0.07);
}
.cta .cta-btn {
  margin: 14px auto 0 auto;
  display: inline-block;
  background: var(--gold);
  color: #fff;
}
.cta .cta-btn:hover {
  background: #A77D2A;
}

/*--------------------------------------------------------------
  FOOTER
--------------------------------------------------------------*/
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 24px 0;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--gold);
}
.social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 32px; height: 32px;
  box-shadow: 0 1.5px 6px rgba(176,134,49,0.05);
  transition: background 0.15s;
}
.social-links a:hover {
  background: var(--gold);
}
.social-links img {
  width: 19px; height:19px;
}
.legal {
  margin-top: 8px;
  font-size: 0.97rem;
  color: #cbd0dc;
  text-align: center;
}

@media (max-width: 600px) {
  .footer-menu {
    flex-direction: column;
    gap: 15px;
  }
}

/*--------------------------------------------------------------
  GENERAL LISTS & UL/OL
--------------------------------------------------------------*/
ul, ol {
  margin-bottom: 1.2em;
  margin-left: 1.5em;
  list-style: disc;
}
.content-wrapper > ul, .content-wrapper > ol {
  margin-left: 1.25em;
  font-size: 1rem;
  color: #37404B;
}
li {
  margin-bottom: 0.5em;
  padding-left: 0.2em;
}
/* Remove disc for main navigation and footer-menu */
.main-nav ul, .footer-menu {
  list-style: none;
  margin: 0;
}

/*--------------------------------------------------------------
  FORMATTED CONTENT: CARDS, LEGAL, THANK YOU
--------------------------------------------------------------*/
.legal.privacy, .legal.gdpr, .legal.cookie, .legal.terms {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 34px 20px 38px 20px;
  margin-bottom: 60px;
}

.thankyou .content-wrapper {
  background: var(--platinum);
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(23,42,58,0.09);
  padding: 32px 21px;
  text-align: center;
  margin: 0 auto;
  max-width: 530px;
}
.thankyou h1 {
  color: var(--gold);
}

/*--------------------------------------------------------------
  CONTACT INFO & DETAILS
--------------------------------------------------------------*/
.contact-info .content-wrapper, .contact-details .content-wrapper {
  gap: 11px;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #232c37;
}
.contact-info a,
.contact-details a { color: var(--gold); word-break: break-all; }
.contact-info a:hover, .contact-details a:hover { text-decoration: underline; }

/*--------------------------------------------------------------
  RESPONSIVE SPACING & MOBILE ADJUSTMENTS
--------------------------------------------------------------*/
@media (max-width: 640px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .section, main section, section {
    padding: 22px 4px;
    margin-bottom: 38px;
    border-radius: 5px;
  }
}

/*--------------------------------------------------------------
  SMALL UI DETALS (DIVIDERS, GOLDS, ETC)
--------------------------------------------------------------*/
hr {
  border: none;
  height: 2px;
  background: var(--gold);
  margin: 38px 0;
  border-radius: 4px;
}

/* Gold highlight for premium words */
.gold {
  color: var(--gold);
}

/*--------------------------------------------------------------
  BUTTONS, MICRO-INTERACTIONS & TRANSITIONS
--------------------------------------------------------------*/
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 28px;
  border: none;
  padding: 12px 32px;
  background: var(--gold);
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.16s, color 0.13s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #8F6C20;
  color: #fffbe6;
}
/* Button secondary*/
.button-secondary {
  background: var(--secondary);
  color: var(--primary);
}
.button-secondary:hover {
  background: #F3F8FC;
  color: var(--gold);
}

/* Links as buttons in cookie or legal sections */
.legal a, .legal a:visited { color: var(--gold); }
.legal a:hover { text-decoration: underline; }

/*--------------------------------------------------------------
  ANIMATIONS
--------------------------------------------------------------*/
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.7,0,0.3,1) 1;
}

/*--------------------------------------------------------------
  COOKIE CONSENT BANNER
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 8888;
  background: #fff;
  box-shadow: 0 -2px 22px 0 rgba(23,42,58,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 16px;
  transition: transform 0.38s cubic-bezier(0.7,0,0.3,1);
  border-top: 3px solid var(--gold);
  font-size: 1.02rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  margin: 0 0.9em 0 0;
  font-size: 1rem;
  color: #202632;
}
.cookie-banner button {
  margin-right: 12px;
  min-width: 124px;
  font-size: 0.99rem;
  padding: 8px 16px;
  border-radius: 20px;
}
.cookie-banner .cookie-banner__settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-banner__settings:hover {
  background: #e6eaf0;
  color: var(--gold);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner button {
    width: 100%;
    margin: 3px 0 0 0;
    min-width: unset;
  }
}

/*--------------------------------------------------------------
  COOKIE MODAL
--------------------------------------------------------------*/
.cookie-modal {
  position: fixed;
  left: 0; top: 0; z-index: 9999;
  width: 100vw; height: 100vh;
  background: rgba(23,42,58,0.59);
  display: flex;
  align-items: center; justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 6px 36px 0 rgba(23,42,58,0.12);
  min-width: 300px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category label {
  color: #232c37;
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--gold);
  width: 21px; height:21px;
}
.cookie-category[data-essential] input[type="checkbox"] {
  accent-color: #aaa;
  cursor: not-allowed;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 13px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #878787;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--gold);
}
.cookie-modal .cta-btn {
  margin-top: 14px;
  background: var(--gold);
  color: #fff;
  width: 100%;
}
.cookie-modal .cta-btn:hover {
  background: #856218;
}

@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 19px 7px 15px 7px;
  }
}

/*--------------------------------------------------------------
  ACCESSIBILITY FOCUS & SELECTION
--------------------------------------------------------------*/
a, button, input, select, textarea {
  outline-color: var(--gold);
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 2px;
}
button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 3px #F8EDD0;
}
::selection {
  background: #E9CE96;
  color: var(--primary);
}

/*--------------------------------------------------------------
  LUXURY PREMIUM MICRO-DETAILS
--------------------------------------------------------------*/
.section:before {
  content: '';
  display: block;
  width: 36px; height: 3px;
  background: var(--gold);
  border-radius: 5px;
  position: absolute;
  top: 18px; left: 30px;
  opacity: 0.28;
}
@media (max-width: 768px) {
  .section:before {
    left: 12px; top: 10px; width: 26px;
  }
}

/* Decorative Gold Accent Underline for h2 */
h2 {
  position: relative;
  padding-bottom: 0.10em;
}
h2:after {
  content: '';
  display: block;
  width: 38px;
  height: 3px;
  background: var(--gold);
  border-radius: 4px;
  position: absolute;
  left: 0;
  bottom: -7px;
  opacity: 0.34;
}

/*--------------------------------------------------------------
  MISC: HIDE/SHOW UTILITIES, CLEARFIX
--------------------------------------------------------------*/
.hide, [aria-hidden="true"] {
  display: none !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Utility: micro space */
.space-8 { height: 8px; width: 100%; display: block; }
.space-16 { height: 16px; width: 100%; display: block; }
.space-32 { height: 32px; width: 100%; display: block; }

/*--------------------------------------------------------------
  END OF STYLE.CSS
--------------------------------------------------------------*/