/* 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, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, input, textarea, button, 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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #FBF8F3 0%, #eae6e2 100%);
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #D81F26;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #a11218;
}
ul, ol {
  list-style: none;
}
button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C2533;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
p {
  margin-bottom: 16px;
  color: #24272d;
}

/* SPACING PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(28,37,51,0.07);
  position: relative;
}
.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;
  background: #FBF8F3;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(28,37,51,0.06);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTAINER UTILS */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER/NAVIGATION STYLES */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(28,37,51,0.05);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1C2533;
  padding: 6px 14px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a.active {
  background: #D81F26;
  color: #fff;
}
.cta-primary {
  background: linear-gradient(90deg, #D81F26 60%, #1C2533 100%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 11px 28px;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(216, 31, 38, 0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
  margin-left: 18px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #c81a20 60%, #131822 100%);
  box-shadow: 0 8px 24px rgba(216, 31, 38, 0.13);
  color: #fff;
}
.cta-secondary {
  background: transparent;
  color: #D81F26;
  border: 2px solid #D81F26;
  border-radius: 10px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-top: 8px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #D81F26;
  color: #fff;
  border-color: #1C2533;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #D81F26;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 5px 16px;
  border-radius: 8px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  z-index: 25;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #B3181E;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28, 37, 51, 0.97);
  z-index: 1001;
  transition: transform 0.42s cubic-bezier(.22,1,.36,1), opacity 0.36s;
  transform: translateX(100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 28px 16px 24px;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin-bottom: 32px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #D81F26;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 6px;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D81F26;
  color: #fff;
}

/* MAIN HERO + SECTIONS */
.hero {
  background: linear-gradient(90deg, #FBF8F3 60%, #ffe8e3 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .content-wrapper,
.listing-hero .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.hero h1, .listing-hero h1 {
  color: #D81F26;
  font-size: 2.4rem;
  letter-spacing: -1.2px;
}

/* Feature grid on homepage */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(28,37,51,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  padding: 24px 22px 20px 18px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 26px rgba(28,37,51,0.18);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  height: 40px;
  width: 40px;
}
.feature-grid h3 {
  color: #1C2533;
  margin-bottom: 4px;
  font-size: 1.11rem;
}
.feature-grid p {
  color: #44484e;
  font-size: 1rem;
}

/* Latest articles section */
.latest-articles article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(28,37,51,0.06);
  padding: 24px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.latest-articles article:hover {
  box-shadow: 0 8px 26px rgba(28,37,51,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* Testimonials */
.testimonials .testimonial-card {
  background: #fff;
  color: #1C2533;
  box-shadow: 0 2px 12px rgba(28,37,51,0.07);
  border-left: 5px solid #D81F26;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #222;
}
.testimonial-author {
  margin-left: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #D81F26;
  font-size: 1rem;
  font-weight: 500;
}

/* Newsletter section */
.newsletter {
  background: linear-gradient(92deg, #fff 65%, #FFEFEF 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(28,37,51,0.04);
  padding: 40px 24px;
  margin-bottom: 48px;
  text-align: center;
}
.newsletter h2 {
  color: #D81F26;
}
.newsletter ul {
  margin: 24px 0 16px 0;
}
.newsletter ul li {
  color: #1C2533;
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}
.newsletter ul li::before {
  content: '\2022';
  color: #D81F26;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

/* Review Listing Cards (.review-summary-card) */
.review-summary-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(28,37,51,0.07);
  padding: 22px 20px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-summary-card:hover {
  box-shadow: 0 8px 18px rgba(28,37,51,0.13);
  transform: scale(1.02);
}
.review-category-tag {
  background: #F7E6E8;
  color: #D81F26;
  display: inline-block;
  border-radius: 10px;
  padding: 2px 13px;
  font-size: 0.93rem;
  font-weight: 500;
  margin-bottom: 7px;
}

/* Interview Cards */
.interview-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(28,37,51,0.06);
  padding: 22px 22px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.interview-card:hover {
  box-shadow: 0 10px 24px rgba(28,37,51,0.12);
  transform: translateY(-2px) scale(1.012);
}
.author-name {
  color: #D81F26;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Ranking Cards */
.film-ranking-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
  margin-bottom: 30px;
}
.film-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 9px rgba(28,37,51,0.08);
  padding: 20px 18px 16px;
  min-width: 200px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.film-card:hover {
  box-shadow: 0 10px 32px rgba(216,31,38,0.10);
  transform: translateY(-3px) scale(1.02);
}

.ranking-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.ranking-category-tabs button {
  background: #F5F7FB;
  color: #1C2533;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 20px;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  font-size: 1rem;
}
.ranking-category-tabs button:hover, .ranking-category-tabs button.active {
  background: #D81F26;
  color: #fff;
}

/* Filter section on recenzje.html */
.filter-section {
  margin-bottom: 36px;
  background: linear-gradient(90deg, #fff 65%, #FBF8F3 100%);
  padding: 28px 18px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(28,37,51,0.04);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}
.search-bar label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C2533;
  margin-right: 10px;
  font-size: 1rem;
}
.search-bar input[type=text] {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #ebebeb;
  font-size: 1rem;
  width: 170px;
  background: #FBF8F3;
  transition: border 0.14s;
}
.search-bar input:focus {
  border: 1.5px solid #D81F26;
}
.category-filters, .sort-options {
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-filters span, .sort-options span {
  color: #1C2533;
  font-weight: 500;
  font-size: 1rem;
}
.category-filters button, .sort-options button {
  background: #fff;
  color: #1C2533;
  border: 1.5px solid #D81F26;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 9px;
  padding: 6px 16px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
  cursor: pointer;
}
.category-filters button:hover, .sort-options button:hover {
  background: #D81F26;
  color: #fff;
}

/* News section (.news-feed) */
.news-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
}
.news-item-list article {
  flex: 1 1 270px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 9px rgba(28,37,51,0.07);
  padding: 20px 18px 16px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.news-item-list article:hover {
  box-shadow: 0 10px 32px rgba(216,31,38,0.08);
  transform: translateY(-3px) scale(1.017);
}
.category-label {
  background: #F7E6E8;
  color: #D81F26;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 2.5px 13px;
  margin-bottom: 8px;
  display: inline-block;
}

/* Pages: about, team, values, contact */
.about, .team, .values {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(28,37,51,0.05);
  padding: 36px 22px 25px;
  margin-bottom: 40px;
}
.team-member-bio {
  background: #F9F7F4;
  border-radius: 12px;
  padding: 20px 18px 14px 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(28,37,51,0.05);
}
.values ul {
  margin-top: 14px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.values ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.values ul img {
  width: 22px;
  height: 22px;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.contact-details strong {
  color: #1C2533;
}
.contact img {
  width: 24px; height: 24px;
}

/* Thank You page */
.thank-you {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(28,37,51,0.07);
  padding: 50px 24px;
  margin-bottom: 40px;
}

/* Legal pages (policy, RODO, regulamin) */
.legal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(28,37,51,0.05);
  padding: 40px 22px;
  margin-bottom: 48px;
  font-size: 1.07rem;
}
.legal ul {
  margin-left: 24px;
  margin-top: 12px;
}
.legal ul li {
  margin-bottom: 8px;
  list-style-type: disc !important;
  color: #434547;
}

/* FOOTER */
footer {
  background: #1C2533;
  color: #fff;
  padding: 36px 0 20px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  flex-direction: row;
}
footer a {
  color: #fff;
  transition: color 0.15s;
}
footer a:hover, footer a:focus {
  color: #D81F26;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.95rem;
}

.footer-info p {
  color: white;
}

.footer-info img {
  width: 18px; height: 18px; margin-right: 6px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.92rem;
  margin-top: 8px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 3px solid #D81F26;
  box-shadow: 0 -2px 16px rgba(28,37,51,.08);
  z-index: 1200;
  padding: 18px 8px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: transform 0.3s, opacity 0.3s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-text {
  color: #1C2533;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  margin-left: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-consent-banner .accept {
  background: #D81F26;
  color: #fff;
}
.cookie-consent-banner .accept:hover {
  background: #AF181D;
}
.cookie-consent-banner .reject {
  background: #EFEFEF;
  color: #1C2533;
  border: 1px solid #D81F26;
}
.cookie-consent-banner .reject:hover {
  background: #fff0f0;
  color: #D81F26;
}
.cookie-consent-banner .settings {
  background: #F5F7FB;
  color: #1C2533;
}
.cookie-consent-banner .settings:hover {
  background: #D81F26;
  color: #fff;
}

/* COOKIE MODAL (example class: .cookie-modal) */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1400;
  background: rgba(28, 37, 51, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #1C2533;
  border-radius: 18px;
  padding: 28px 28px 22px;
  max-width: 420px;
  width: 86vw;
  box-shadow: 0 12px 44px rgba(28,37,51,0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .modal-content h3 {
  color: #D81F26;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1C2533;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .modal-close:hover { color: #D81F26; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
}
.cookie-toggle label {
  color: #1C2533;
  font-weight: 500;
}
.cookie-toggle input[type=checkbox] {
  accent-color: #D81F26;
  width: 20px;
  height: 20px;
}
.cookie-modal .save-preferences {
  margin-top: 18px;
  background: #D81F26;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 0;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(216,31,38,0.10);
  transition: background 0.16s;
}
.cookie-modal .save-preferences:hover {
  background: #AF181D;
}

/* TRANSITIONS & MICRO-INTERACTIONS */
.card, .review-summary-card, .interview-card, .film-card, .feature-grid li, .news-item-list article {
  transition: box-shadow 0.22s, transform 0.22s;
}
.cta-primary, .cta-secondary, .ranking-category-tabs button, .category-filters button, .sort-options button {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
  footer .container { flex-direction: column; gap: 19px; align-items: flex-start; }
}
@media (max-width: 900px) {
  .hero { min-height: 240px; }
  .film-ranking-cards, .feature-grid, .news-item-list {
    flex-direction: column;
    gap: 18px;
  }
  .section { padding: 26px 9px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 8px; }
  .content-wrapper { gap: 18px; }
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    padding: 7px 6px;
  }
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero, .listing-hero {
    min-height: 160px;
    padding-bottom: 24px;
  }
  .feature-grid li, .film-card, .review-summary-card, .news-item-list article, .interview-card {
    max-width: 100%;
    min-width: 0;
    padding: 20px 11px 13px 11px;
  }
  .footer-info, .footer-menu {
    gap: 8px;
    font-size: 1rem;
  }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .news-item-list, .film-ranking-cards, .feature-grid {
    gap: 13px;
  }
  .filters {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    font-size: 0.97rem;
    padding: 13px 4px;
    text-align: left;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.12rem; }
  .footer-info, .footer-menu {
    font-size: 0.86rem;
  }
  .container { padding: 0 3px; }
  .hero .container, .listing-hero .container {
    padding: 1px 2px 13px 2px;
  }
  .about, .thank-you, .newsletter, .legal {
    padding: 10px 2px;
  }
  .cookie-modal .modal-content {
    padding: 14px 6px 16px;
    width: 96vw;
    min-width: 0;
    max-width: none;
  }
}

/* Hide scroll for modal overlays when open */
body.modal-open {
  overflow: hidden !important;
}

/* FOCUS ACCESSIBILITY */
a:focus, button:focus, input:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid #D81F26;
  outline-offset: 2px;
}

/* END OF STYLE.CSS */
