/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
img {
  max-width: 100%;
  display: block;
}
html { scroll-behavior: smooth; }

/* --- CSS VARIABLES (with fallback for wide support) --- */
:root {
  --color-primary: #23272A;
  --color-secondary: #586069;
  --color-accent: #F3B12F;
  --color-bg: #191C1F;
  --color-card: #23272A;
  --color-neon: #F3B12F;
  --color-light: #F5F5F5;
  --color-text: #F5F5F5;
  --color-subtle: #AAB2BD;
  --color-shadow: rgba(243, 177, 47, 0.18);
  --font-display: 'Oswald', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-neon);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px var(--color-shadow);
}
@media (max-width: 480px) {
  h1, .hero h1 { font-size: 2rem; }
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-light);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-neon);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--color-light);
}
p, li {
  font-size: 1rem;
  color: var(--color-text);
}
.subheadline {
  font-size: 1.13rem;
  color: var(--color-subtle);
  margin-bottom: 28px;
}
strong, b {
  font-weight: bold;
  color: var(--color-neon);
}
.brand-tagline {
  font-family: var(--font-display);
  color: var(--color-neon);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  margin-top: 25px;
  text-align: center;
}

/* --- LAYOUT CONTAINERS & SPACING --- */
.container {
  max-width: 1164px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  position: relative;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(35,39,42,0.92);
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--color-shadow);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(25,28,31, .85);
  border-radius: 16px;
}

/* --- FLEXBOX PATTERNS --- */
.feature-grid, .service-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .feature-grid, .service-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.text-image-section, .testimonial-card {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.card {
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 4px 24px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 24px;
}
.card-container > .card { flex: 1 1 300px; min-width: 260px; }
.content-grid > * { flex: 1 1 300px; min-width: 220px; }
.card-content { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #222;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(243,177,47,0.13), 0 1.5px 5px rgba(35,39,42,0.07);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 480px;
}
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .testimonials-slider { flex-direction: column; gap: 18px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #292b31;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(35,39,42,0.10);
  padding: 26px 22px;
  flex: 1 1 230px;
  min-width: 220px;
}
.feature-details {
  margin-top: 20px;
}

/* --- HERO SECTION --- */
.hero {
  width: 100%;
  min-height: 56vh;
  background: linear-gradient(90deg, #23272A 65%, #F3B12F 160%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 38px var(--color-shadow);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  text-align: left;
  padding: 44px 0;
}
.hero .cta-btn {
  margin-top: 24px;
}

/* --- HEADER & NAV --- */
header {
  background: rgba(25,28,31,0.970);
  box-shadow: 0 1.5px 12px rgba(35,39,42,0.14);
  width: 100%;
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(243,177,47,0.13));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-light);
  font-size: 1.10rem;
  font-weight: 400;
  position: relative;
  transition: color 0.20s cubic-bezier(.62,.13,.48,1.05);
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-neon);
  text-shadow: 0 2px 16px var(--color-shadow);
}
.cta-btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neon);
  color: #23272A;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 1.19rem;
  font-weight: 600;
  padding: 12px 32px;
  transition: background 0.18s, transform 0.18s, color 0.17s;
  box-shadow: 0 5px 32px var(--color-shadow);
  cursor: pointer;
  margin-left: 26px;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #ffe17c;
  color: #23272a;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 9px 36px rgba(243,177,47,0.26);
}
.cta-btn {
  border: none;
  outline: none;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-neon);
  color: #23272A;
  border-radius: 10px;
  font-size: 2rem;
  margin-left: 14px;
  padding: 8px 16px;
  box-shadow: 0 2px 12px var(--color-shadow);
  cursor: pointer;
  z-index: 120;
  border: none;
  transition: background 0.13s, color 0.13s, transform 0.17s;
}
.mobile-menu-toggle:active {
  background: #ffe17c;
  color: #23272A;
  transform: scale(0.96);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(108deg, #23272A 85%, #F3B12F 170%);
  z-index: 9999;
  padding: 40px 30px 20px 30px;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.62,.13,.48,1.05);
  box-shadow: 0 0 80px #23272a;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-neon);
  color: #23272A;
  border-radius: 40px;
  font-size: 2rem;
  margin-bottom: 20px;
  padding: 6px 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  cursor: pointer;
  border: none;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:active {
  background: #ffe17c;
  color: #23272A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 16px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 12px 10px;
  border-radius: 8px;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:active,
.mobile-nav a:focus {
  background: var(--color-neon);
  color: #23272A;
}
@media (max-width: 980px) {
  .main-nav, .cta-btn.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- FOOTER --- */
footer {
  background: #181a1e;
  color: var(--color-subtle);
  padding: 50px 0 0 0;
  font-size: 1rem;
  margin-top: 60px;
  border-top: 4px solid var(--color-neon);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  width: 58px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(243,177,47,0.15));
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-nav a, .footer-legal a {
  color: var(--color-subtle);
  font-size: 1rem;
  transition: color 0.2s;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--color-neon);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 10px 0;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-brand {
  text-align: center;
  margin: 20px 0 0 0;
}
.brand-tagline {
  color: var(--color-neon);
  font-family: var(--font-display);
  font-size: 1.01rem;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer .container {
    gap: 10px;
  }
}

/* --- CARDS & FEATURE ITEMS --- */
.card, .feature-item, .service-item {
  background: #23272A;
  border-radius: 14px;
  box-shadow: 0 3px 19px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border 0.17s, transform 0.16s;
}
.card:hover, .feature-item:hover, .service-item:hover {
  box-shadow: 0 7px 28px rgba(243,177,47,0.38);
  border: 1.5px solid var(--color-neon);
  transform: translateY(-4px) scale(1.01);
}
.service-item {
  padding: 25px 20px 21px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 1 230px;
  min-width: 210px;
}

/* --- LISTS --- */
.feature-list, .feature-benefits, .usp-list, .product-highlights, .timeline ul, .feature-details ul, .inclusions-list ul, .arrival-info ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
  margin-left: 16px;
  color: var(--color-light);
  font-size: 1rem;
}
.feature-list li, .feature-benefits li, .usp-list li, .product-highlights li, .timeline ul li, .feature-details ul li, .inclusions-list ul li, .arrival-info ul li {
  position: relative;
  padding-left: 16px;
}
.feature-list li::before, .feature-benefits li::before, .usp-list li::before, .product-highlights li::before, .timeline ul li::before, .feature-details ul li::before, .arrival-info ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-neon);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 9px;
}

/* --- TABLES --- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  background: #23272A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--color-shadow);
}
.price-table th, .price-table td {
  padding: 15px 18px;
  color: var(--color-light);
  font-size: 1rem;
  line-height: 1.6;
}
.price-table th {
  background: var(--color-neon);
  color: #23272A;
  font-family: var(--font-display);
  font-size: 1.10rem;
  letter-spacing: 0.03em;
}
.price-table tr:nth-child(even) td {
  background: #25282d;
}
.price-table tr:nth-child(odd) td {
  background: #23272a;
}
.inclusions-list {
  margin-top: 14px;
  color: var(--color-subtle);
}

/* --- CONTACT DETAILS --- */
.contact-details, .arrival-info, .contact-snippet {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #23272a;
  border-radius: 12px;
  padding: 22px 20px;
  color: #fff;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-top: 20px;
  margin-bottom: 20px;
}
.contact-details img, .contact-snippet img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.cta-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (max-width: 700px) {
  .content-wrapper, .section {
    padding: 22px 6px;
  }
}

/* --- CONTENT SECTIONS --- */
.timeline {
  background: #212326;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(35,39,42,0.06);
  padding: 25px 18px;
  margin-top: 16px;
  margin-bottom: 10px;
}
.timeline h3 {
  color: var(--color-neon);
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.legal-text {
  color: var(--color-light);
  font-size: 1rem;
  background: #222428;
  padding: 28px 18px;
  border-radius: 8px;
  box-shadow: 0 1.5px 9px rgba(243,177,47,0.09);
}
.legal-text a {
  color: var(--color-neon);
  text-decoration: underline;
}

/* --- SPECIAL SECTIONS --- */
.feature-icons {
  display: flex;
  gap: 26px;
  margin-bottom: 14px;
}
.feature-icons img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px var(--color-shadow));
}

.arrival-info h3 {
  color: var(--color-neon);
  margin-bottom: 7px;
  font-size: 1.1rem;
}

/* --- THANK YOU PAGE --- */
.thanks-section {
  margin-top: 60px;
}

/* --- ANIMATIONS & INTERACTIONS --- */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.13s, box-shadow 0.17s, transform 0.13s;
}

a, button, .cta-btn {
  outline: none;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}

/* Hover Neon Glow */
.cta-btn.primary:hover, .main-nav a:hover, .footer-nav a:hover, .feature-item:hover, .card:hover {
  box-shadow: 0 6px 26px var(--color-neon), 0 0 0 transparent;
}

/* --- RESPONSIVE HELPER --- */
@media (max-width: 700px) {
  h1, .hero h1 { font-size: 1.48rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.05rem; }
  .card, .feature-item, .service-item {
    padding: 18px 8px 12px 10px;
    min-width: 0;
  }
  .footer-main {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .container { padding: 0 8px; }
}

/* === COOKIE BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 19995;
  width: 100vw;
  background: #23272A;
  color: var(--color-light);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 22px 20px;
  box-shadow: 0 -3px 32px var(--color-shadow);
  font-size: 1rem;
  animation: fadeInBottom 0.6s;
}
@keyframes fadeInBottom {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: var(--color-light);
  font-size: 1rem;
  margin-right: 8px;
}
.cookie-banner .cookie-btn {
  margin: 0 8px;
  padding: 8px 20px;
  background: var(--color-neon);
  color: #23272A;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 1.5px 10px var(--color-shadow);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ffe17c;
  color: #23272A;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: var(--color-neon);
  border: 1.2px solid var(--color-neon);
  font-size: 1rem;
  font-weight: 400;
}
.cookie-banner .cookie-btn.settings:hover {
  background: var(--color-neon);
  color: #23272A;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 11px; padding: 12px 3px; }
  .cookie-banner p { margin-right: 0; text-align: center; }
}

.cookie-modal {
  position: fixed;
  z-index: 20000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,18,44,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 1;
  pointer-events: auto;
  animation: fadeInUpCookieModal 0.45s;
}
@keyframes fadeInUpCookieModal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal.hidden { opacity: 0; pointer-events: none; }
.cookie-modal .modal-content {
  background: #23272A;
  color: var(--color-light);
  border-radius: 14px;
  box-shadow: 0 8px 48px var(--color-shadow);
  padding: 38px 24px 28px 24px;
  min-width: 310px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeInModalPopup 0.5s;
  position: relative;
}
@keyframes fadeInModalPopup {
  from { opacity: 0; transform: scale(0.91); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal .modal-content h2 {
  font-size: 1.35rem;
  color: var(--color-neon);
  margin-bottom: 12px;
}
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 19px 0 0 0;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid #343639;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--color-light);
}
.cookie-modal .cookie-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-modal .cookie-switch input[type='checkbox'] {
  display: none;
}
.cookie-modal .slider {
  width: 34px;
  height: 16px;
  border-radius: 10px;
  background: #393e44;
  position: relative;
  transition: background 0.14s;
  margin-left: 6px;
}
.cookie-modal .slider::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 12px; height: 12px;
  background: var(--color-subtle);
  border-radius: 50%;
  transition: 0.22s;
}
.cookie-modal input[type='checkbox']:checked + .slider {
  background: var(--color-neon);
}
.cookie-modal input[type='checkbox']:checked + .slider::before {
  background: #23272A;
  transform: translateX(16px);
}
.cookie-modal .modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  background: var(--color-neon);
  color: #23272A;
  border-radius: 32px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 1.5px 10px var(--color-shadow);
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal .cookie-btn.cancel {
  background: transparent;
  color: var(--color-neon);
  border: 1.2px solid var(--color-neon);
  font-weight: 400;
}
.cookie-modal .cookie-btn.cancel:hover {
  background: var(--color-neon);
  color: #23272A;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-neon);
  color: #23272A;
  border-radius: 22px;
  font-size: 1.25rem;
  padding: 4px 14px 7px 14px;
  box-shadow: 0 2px 6px var(--color-shadow);
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .modal-close:active {
  background: #ffe17c;
  color: #23272A;
}
@media (max-width: 450px) {
  .cookie-modal .modal-content {
    padding: 18px 3px 18px 3px;
    min-width: 0;
  }
}

/* --- SCROLLBAR STYLE: Futuristic Touch --- */
body::-webkit-scrollbar {
  background: #23272a;
  width: 12px;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #23272A 70%, #F3B12F 100%);
  border-radius: 10px;
}

/* --- CUSTOM NEON FOCUS OUTLINE --- */
:focus-visible {
  outline: 2px solid var(--color-neon) !important;
  outline-offset: 2px;
}

/* --- MICRO-INTERACTION: Icon Color Change --- */
.feature-item img, .service-item img {
  width: 44px;
  height: 44px;
  transition: filter 0.15s, transform 0.18s;
  filter: drop-shadow(0 1.5px 10px var(--color-shadow));
}
.feature-item:hover img, .service-item:hover img {
  filter: drop-shadow(0 2.5px 22px var(--color-neon)) brightness(1.20);
  transform: scale(1.14) rotate(-3deg);
}

/* --- HIGH CONTRAST IN TESTIMONIALS --- */
.testimonial-card {
  background: #fff !important;
  color: #23272A !important;
  border-left: 4px solid var(--color-neon);
  box-shadow: 0 2px 16px var(--color-shadow), 0 1.5px 5px #b9abc68c;
}
.testimonial-card strong {
  color: var(--color-secondary);
}

/* --- MISC: Accessibility, Breathing Room & Spacing --- */
section + section {
  margin-top: 36px;
}
main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 70vh;
}

/* End of Style.css */
