/* =====================================================
   CSS RESET & BASE TYPOGRAPHY
======================================================*/
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F8FAFB;
  color: #1a2936;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #284E70;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #79A8A9;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 0.5em;
}
img,
svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #284E70;
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  h1, .h1 {
    font-size: 2rem;
  }
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #284E70;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  color: #284E70;
  text-transform: uppercase;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #284E70;
}
p, .subtitle, li, blockquote, cite {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #21304b;
  line-height: 1.7;
}
.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #79A8A9;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
  color: #284E70;
}
blockquote {
  border-left: 6px solid #F3DB97;
  padding: 12px 20px;
  font-style: italic;
  background: #fffbe7;
  margin-bottom: 8px;
}
cite {
  display: block;
  font-size: 0.95em;
  color: #21304b;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ============
   LAYOUT
============== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 10px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(40,78,112,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 260px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 20px rgba(40,78,112,0.16);
  transform: translateY(-2px) scale(1.02) rotate(-0.2deg);
  z-index: 2;
}
.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;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fffefe;
  border-left: 6px solid #284E70;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(40,78,112,0.04);
  transition: box-shadow 0.15s, border-color 0.18s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  border-left-color: #F3DB97;
  box-shadow: 0 6px 24px rgba(40,78,112,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Common utility classes */
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}

/* =========================================
   HEADER / NAVIGATION
========================================= */
header {
  background: #fff;
  box-shadow: 0 3px 20px -14px #21304b2a;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.main-nav a {
  color: #284E70;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F3DB97;
  color: #21304b;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  background: #284E70;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(40,78,112,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.16s;
  margin-left: 18px;
  text-transform: uppercase;
}
.cta-button:hover,
.cta-button:focus {
  background: #79A8A9;
  color: #fff;
  transform: translateY(-2px) scale(1.04) skewX(-2deg);
}
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #284E70;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  padding: 6px 14px;
  transition: background 0.16s, color 0.16s, transform 0.18s;
  border-radius: 8px;
  z-index: 39;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #F3DB97;
  color: #21304b;
}
/* Hide nav and show burger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 512px) {
  .cta-button {
    padding: 10px 19px;
    font-size: 1rem;
  }
}

/* ========================================
   MOBILE MENU OVERLAY & ANIMATION
======================================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #1a2936e6;
  box-shadow: -6px 0 18px rgba(40,78,112,0.11);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.5,1.8,.5,1), background 0.15s;
  z-index: 1000;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F3DB97;
  color: #284E70;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  margin: 24px 30px 0 0;
  cursor: pointer;
  transition: background 0.16s, color 0.11s;
  outline: none;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #79A8A9;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 40px 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 600;
  padding: 11px 20px 11px 12px;
  border-radius: 10px 0 0 10px;
  background: transparent;
  transition: background 0.2s, color 0.16s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F3DB97;
  color: #284E70;
}
@media (max-width: 440px) {
  .mobile-menu {
    padding: 0;
  }
  .mobile-nav {
    padding: 32px 14px 0 14px;
  }
  .mobile-menu-close {
    margin: 18px 13px 0 0;
    font-size: 1.6rem;
  }
}

/* =========================================
   HERO / LANDING SECTIONS
========================================= */
.hero {
  background: linear-gradient(120deg, #fff 60%, #F3DB97 110%);
  border-bottom: 8px solid #284E70;
  margin-bottom: 60px;
  padding: 72px 0 48px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 620px;
  gap: 16px;
}
.hero h1 {
  font-size: 2.8rem;
  color: #284E70;
}
.hero .subtitle {
  margin-bottom: 28px;
  color: #79A8A9;
}
@media (max-width: 600px) {
  .hero {
    padding: 42px 0 20px 0;
    margin-bottom: 32px;
  }
}

/* =========================================
   FEATURES / USP
========================================= */
.features {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 48px rgba(40,78,112,0.08);
  margin-bottom: 48px;
  padding: 48px 0 32px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  list-style: none;
  margin: 24px 0 0 0;
}
.feature-grid li {
  flex: 1 1 240px;
  background: #F8FAFB;
  border: 2.2px solid #F3DB97;
  border-radius: 17px;
  padding: 30px 18px;
  min-width: 250px;
  margin: 0;
  box-shadow: 0 1px 5px rgba(40,78,112,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.17s, border-color 0.17s, transform 0.13s;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  border-color: #79A8A9;
  box-shadow: 0 3px 20px rgba(40,78,112,0.12);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  margin: 10px 0 9px 0;
  color: #284E70;
  font-size: 1.10rem;
  text-transform: uppercase;
}
.usp-list {
  margin: 22px 0 12px 0;
}
.usp-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
}
.usp-list li {
  display: flex;
  align-items: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.usp-list li img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  filter: grayscale(1) invert(0.2);
}

/* =========================================
   CARDS/LISTS/INFO PANELS
========================================= */
.course-card, .workshop-card, .coaching-card {
  background: #fff;
  border: 2px solid #F3DB97;
  border-radius: 17px;
  box-shadow: 0 1.5px 10px rgba(40,78,112,0.10);
  padding: 28px 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.13s, border-color 0.15s, transform 0.11s;
}
.course-card:hover,
.workshop-card:hover,
.coaching-card:hover { 
  border-color: #79A8A9;
  box-shadow: 0 4px 18px rgba(40,78,112,0.17);
  transform: translateY(-2px) scale(1.015);
}
.course-price, .workshop-price, .coaching-price {
  color: #284E70;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  background: #F3DB97;
  padding: 7px 14px;
  border-radius: 9px;
  align-self: flex-end;
  margin-top: 10px;
}
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 26px;
}

.benefits-list, .approach-highlights, .success-list, .service-list, .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
  list-style: none;
}
.benefits-list li, .approach-highlights li, .success-list li, .service-list li, .contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.benefits-list img,
.approach-highlights img,
.success-list img,
.service-list img,
.contact-info-list img {
  width: 21px;
  height: 21px;
}

/* =========================================
   TABLES
========================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 30px 0;
  font-size: 1rem;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 16px rgba(40,78,112,0.06);
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 15px 16px;
  text-align: center;
  border-bottom: 2px solid #F3DB97;
}
.comparison-table th {
  background: #F3DB97;
  color: #284E70;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table td {
  font-family: 'Open Sans', Arial, sans-serif;
}

/* =========================================
   TESTIMONIALS & REVIEWS
========================================= */
.testimonials, .testimonials-preview {
  background: #F8FAFB;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(40,78,112,0.07);
  margin-bottom: 60px;
  padding: 32px 0 26px 0;
}
.testimonials .testimonial-card {
  background: #fff;
  color: #1a2936;
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  color: #21304b;
  font-size: 1.13rem;
  font-style: italic;
}
.testimonial-card cite {
  color: #284E70;
  font-weight: 600;
  font-style: normal;
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: #284E70;
  color: #fff;
  padding: 36px 0 22px 0;
  border-top: 7px solid #F3DB97;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-right: 20px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F3DB97;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #79A8A9;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.99rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.footer-logo {
  align-self: flex-end;
  display: flex;
}
.footer-logo img {
  height: 39px;
  width: auto;
  filter: brightness(1.15) drop-shadow(0 1px 2px #2226);  
}
@media (max-width: 992px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-logo { align-self: flex-start; }
}

/* =============================================
   RESPONSIVE DESIGN (Mobile-first enhancements)
============================================= */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .feature-grid {
    gap: 20px;
    flex-direction: column;
  }
  .courses-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav, .footer-contact { gap: 14px; }
  .testimonial-card { gap: 14px; padding: 14px; }
}
@media (max-width: 480px) {
  body { font-size: 0.97rem; }
  h1, .h1 { font-size: 1.35rem; }
  h2, .h2 { font-size: 1.08rem; }
  .cta-button { padding: 9px 16px; font-size: 0.98rem; }
}

/* ============================================
   COOKIE CONSENT BANNER & POPUP
============================================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  background: #284E70;
  color: #fff;
  padding: 22px 16px;
  box-shadow: 0 -8px 34px rgba(40,78,112,0.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  animation: cookie-banner-in 0.4s;
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0%); opacity: 1; }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  background: #F3DB97;
  color: #284E70;
  transition: background 0.13s, color 0.11s, transform 0.13s;
}
.cookie-button:hover,
.cookie-button:focus {
  background: #79A8A9;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.cookie-button.reject {
  background: #fff;
  color: #284E70;
  border: 1.8px solid #F3DB97;
}
.cookie-button.reject:hover {
  background: #284E70;
  color: #fff;
}
.cookie-button.settings {
  background: #79A8A9;
  color: #fff;
}
.cookie-button.settings:hover {
  background: #F3DB97;
  color: #284E70;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2110;
  transform: translate(-50%,-50%) scale(0.95);
  min-width: 320px;
  max-width: 95vw;
  background: #fff;
  color: #21304b;
  border-radius: 17px;
  box-shadow: 0 12px 40px rgba(40,78,112,0.21);
  padding: 38px 28px 24px 28px;
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-in 0.28s cubic-bezier(.72,.33,.28,1.81);
}
@keyframes cookie-modal-in {
  from { transform: translate(-50%,0) scale(0.92); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #284E70;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 18px;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #F3DB97;
  outline: none;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle:checked {
  background: #79A8A9;
}
.cookie-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.2px 4px #21304b1a;
  transition: left 0.14s;
}
.cookie-toggle:checked::before {
  left: 22px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: transparent;
  color: #284E70;
  font-size: 1.5rem;
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 8px;
  transition: background 0.13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F3DB97;
}
.cookie-category .description {
  font-size: 0.97rem;
  color: #21304b;
}

/* =========================================
   SPECIAL & MISC
========================================= */
::selection {
  background: #F3DB97;
  color: #284E70;
}
::-webkit-input-placeholder { color: #9bb2c2; }
::-moz-placeholder { color: #9bb2c2; }
:-ms-input-placeholder { color: #9bb2c2; }
::placeholder { color: #9bb2c2; }

@media (hover: none) and (pointer: coarse) {
  a:active, .cta-button:active, .mobile-menu-toggle:active {
    filter: brightness(0.97);
  }
}

/* Utility for visually hidden (accessibility) */
.visually-hidden {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Geometric/Structured Elements */
.card, .feature-grid li, .testimonial-card, .course-card, .workshop-card, .coaching-card, .cookie-modal, .comparison-table {
  box-shadow: 0 2px 10px rgba(40,78,112,0.09);
  border-radius: 17px;
}
/* Button geometric, angular font, high-contrast style */
.cta-button, .cookie-button {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 30px;
}
/* Structured spacing between all cards/sections */
.section, .courses-list, .about-short, .courses-preview, .testimonials-preview, .testimonial-highlights {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Flex rules for special sections */
.courses-list .courses-grid, .courses-comparison .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.courses-list .courses-grid {
  justify-content: flex-start;
}

/* Table responsiveness */
@media (max-width: 700px) {
  .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table th, .comparison-table td {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: none;
    text-align: left;
    padding: 8px 8px;
  }
  .comparison-table th {
    background: #fff2be;
    color: #284E70;
  }
}

/* Hide desktop nav & adjust header/footer on small screens */
@media (max-width: 992px) {
  .footer-nav { gap: 16px; }
  .footer-contact { gap: 6px; }
}

/* Add appropriate z-index for nav overlays */
header, .mobile-menu, .cookie-consent-banner, .cookie-modal {
  z-index: 1000;
}

/* Polished micro-interaction for buttons */
.cta-button, .cookie-button {
  transition: background 0.16s, color 0.13s, transform 0.11s;
}
.cta-button:focus-visible, .cookie-button:focus-visible {
  outline: 2px solid #f3db97;
  outline-offset: 2px;
}

/* Section-specific geometric accent bar */
h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #F3DB97;
  border-radius: 4px;
  margin: 10px 0 0 0;
}

/* ==========================================
   END OF STYLE.CSS
========================================= */
