/* RESET & NORMALIZATION */
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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F7F4;
  color: #1C3D5A;
}

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

img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.72,0.01,0.33,1);
}
a:hover, a:focus {
  color: #F4A259;
  text-decoration: underline;
}

:root {
  --primary: #1C3D5A;
  --secondary: #F4A259;
  --accent: #F8F7F4;
  --dark: #1C3D5A;
  --light: #FFFFFF;
  --shadow: 0 2px 12px 0 rgba(28,61,90,0.12);
  --radius: 16px;
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  background: var(--accent);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 32px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 28px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 18px;
  font-weight: 700;
}
h4, h5, h6 {font-weight:700;}
p, ul, ol {margin-bottom: 18px;}
strong {font-weight:700;}

ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* CONTAINER & STRUCTURE */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

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

/* GEOMETRIC STRUCTURED AESTHETIC */
.feature-grid, .services-grid, .card-container, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature, .service {
  background: var(--accent);
  border: 2.5px solid var(--primary);
  border-radius: 18px 32px 18px 32px / 32px 18px 32px 18px;
  box-shadow: 0 4px 20px rgba(28,61,90,0.08);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 235px;
  max-width: 320px;
  flex: 1 1 calc(48% - 24px);
  margin-bottom: 20px;
  transition: box-shadow 0.21s cubic-bezier(0.72,0.01,0.33,1), transform 0.18s;
}
.feature:hover, .service:hover {
  box-shadow: 0 8px 32px 0 rgba(28,61,90,0.14);
  transform: translateY(-4px) scale(1.018) rotate(-1deg);
  border-color: var(--secondary);
}
.feature img, .service img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.service-price {
  margin-top: 16px;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--secondary);
}

.card-container, .services-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 225px;
  flex: 1 1 275px;
  transition: box-shadow 0.19s cubic-bezier(0.72,0.01,0.33,1), transform 0.17s;
}
.card:hover {
  box-shadow: 0 10px 28px 0 rgba(28,61,90,0.13);
  transform: scale(1.02);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 20px 30px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 24px 36px 24px 36px / 36px 24px 36px 24px;
  min-width: 225px;
  max-width: 340px;
  flex: 1 1 300px;
  box-shadow: 0 4px 20px rgba(28,61,90,0.13);
  color: #1C3D5A;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card strong {
  font-style: normal;
  font-weight: 800;
  color: var(--secondary);
  font-size: 1.04em;
  margin-top: 12px;
}
.testimonial-card:hover {
  transform: scale(1.016) rotate(0.3deg);
  box-shadow: 0 10px 32px 0 rgba(28,61,90,0.17);
  border-color: var(--secondary);
}

.trust-signals {
  margin-top: 16px;
  padding: 14px 20px;
  background: #fff8ef;
  border-radius: 9px;
  border-left: 4px solid var(--secondary);
  font-size: 1rem;
}
.trust-signals ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.trust-signals li {
  padding: 4px 16px 4px 0px;
  font-weight: 600;
  color: #C0751D;
  font-size: 0.98em;
}

/* MAIN CTA BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--secondary) 80%, #f9d7b2 100%);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  border-radius: 18px 36px 24px 36px/32px 14px 32px 24px;
  box-shadow: 0 2px 12px rgba(28,61,90,0.05);
  padding: 16px 34px 14px 34px;
  border: none;
  margin-top: 10px;
  transition: background 0.22s, color 0.18s, box-shadow 0.2s, transform 0.14s;
  cursor: pointer;
  outline: none;
  border-bottom: 3px solid var(--primary);
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(45deg, #F4A259 60%, #ffd8b5 100%);
  color: #063665;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px 0 rgba(244,162,89,0.18);
}

button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* HEADER NAVIGATION */
header {
  background: var(--light);
  border-bottom: 2px solid #eef3f7;
  position: sticky;
  top: 0;
  z-index: 1020;
  min-height: 72px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header a img {
  height: 50px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 10px 14px;
  border-radius: 13px 17px 13px 17px / 17px 13px 17px 13px;
  transition: background 0.17s, color 0.16s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--secondary);
  color: var(--primary);
}
header .cta-btn {
  margin: 0 0 0 24px;
  font-size: 1rem;
  padding: 11px 24px 10px 24px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 7px 15px 9px 15px;
  margin-left: 10px;
  cursor: pointer;
  z-index: 1030;
  transition: background 0.17s, color 0.13s, box-shadow 0.17s;
  box-shadow: 0 2px 7px rgba(28,61,90,0.06);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-menu {
  display: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--light);
  box-shadow: 1.5px 0 30px rgba(28,61,90,0.15);
  z-index: 1100;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  padding: 10px 14px;
  cursor: pointer;
  z-index: 1202;
  margin-bottom: 10px;
  margin-right: 16px;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 36px;
  gap: 8px;
}
.mobile-nav a {
  background: none;
  border: none;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  padding: 14px 6px 14px 2px;
  border-radius: 14px 20px 13px 16px;
  transition: background 0.19s, color 0.12s;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 1080px){
  .container{
    max-width: 96vw;
  }
}
@media (max-width: 920px){
  .main-nav{
    gap: 13px;
  }
}
@media (max-width: 860px){
  .feature, .service {
    min-width: 180px;
    padding: 22px 13px 19px 13px;
    font-size: 0.98rem;
  }
}

/* MOBILE FIRST RESPONSIVENESS */
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100vw;
  }
  .section {
    padding: 21px 6px;
    margin-bottom: 40px;
    border-radius: 18px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    padding-bottom: 0;
    padding-top: 4px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .services-grid, .testimonial-list, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 23px;
  }
  .testimonial-card, .feature, .service {
    min-width: 0;
    max-width: 100%;
    padding: 18px 8px 16px 8px;
    font-size: 1em;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .trust-signals ul {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 550px){
  h1 {font-size: 1.6rem; margin-bottom: 21px;}
  h2 {font-size: 1.23rem; margin-bottom: 11px;}
  h3 {font-size: 1.02rem; margin-bottom: 9px;}
  header .container {
    gap: 2px;
  }
  .footer-contact-short{
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 0.98em;
  }
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--light);
  padding: 35px 0 28px 0;
  font-size: 1rem;
}
footer .container {
  gap: 22px;
  align-items: flex-start;
}
.footer-links{
  display: flex;
  gap: 28px;
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 9px 18px 9px 12px;
  transition: background 0.12s, color 0.16s;
  background: none;
}
.footer-links a:hover, .footer-links a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact-short {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-contact-short img {
  vertical-align: middle;
  margin-right: 3px;
  width: 19px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 5px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: 0 2px 12px #1C3D5A13;
  background: var(--light);
  transition: transform 0.16s, box-shadow 0.14s;
}
.footer-social a:hover img {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 24px #F4A25955;
}
.copyright {
  font-size: 0.97rem;
  color: #f3d0a6;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 640px){
  .footer-links{gap:9px;flex-wrap:wrap;}
  footer .container{gap:17px;}
  .footer-contact-short{font-size:0.97em;gap:4px;}
  .footer-social{margin-top:0;gap:11px;}
}

/* BLOG POSTS LIST */
.post-list,
ul.service-benefits {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.post-list li {
  background: #fff;
  border-left: 5px solid var(--secondary);
  border-radius: 15px 25px 18px 16px;
  box-shadow: 0 2px 12px #1C3D5A08;
  padding: 24px 22px;
  margin-bottom: 5px;
  transition: box-shadow 0.18s, border-color 0.15s;
}
.post-list li:hover,
ul.service-benefits li:hover {
  box-shadow: 0 8px 24px #F4A25914;
  border-color: var(--primary);
}
ul.service-benefits li {
  background: #F8F7F4;
  border-left: 4px solid #F4A259;
  border-radius: 12px 21px 12px 14px;
  padding: 11px 20px 11px 16px;
  margin-bottom: 3px;
  font-size: 1.045em;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #1C3D5A;
  transition: background 0.13s, border-color 0.18s;
}

/* MISCELLANEOUS */
.text-section ul {
  list-style-type: square;
  margin-bottom: 16px;
}
.text-section li {
  margin-bottom: 7px;
}
.text-section img {
  width: 21px;
  margin-right: 7px;
  vertical-align: middle;
}

/* COOKIE BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 4px solid var(--secondary);
  box-shadow: 0 -4px 32px #1C3D5A13;
  z-index: 2140;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw 20px 5vw;
  font-size: 1rem;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.74, 0, 0.33, 1), opacity 0.2s;
}
.cookie-consent-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner p {
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 0 18px 0 0;
  flex: 1 1 70%;
}
.cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn,
.cookie-settings-btn {
  border: none;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 12px 19px 12px 11px;
  font-size: 1rem;
  padding: 10px 22px;
  margin-left: 3px;
  cursor: pointer;
  transition: background 0.19s, color 0.13s, box-shadow 0.1s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.reject {
  background: #F7E9E1;
  color: #C75C21;
  border: 2px solid #F4A259;
}
.cookie-btn.reject:hover {
  background: #C75C21;
  color: #fff;
  border-color: #C75C21;
}
.cookie-settings-btn {
  background: #fff8ef;
  color: var(--primary);
  border: 2px solid #F4A259;
  font-size: 0.95rem;
}
.cookie-settings-btn:hover {
  background: var(--primary);
  color: #fff8ef;
}
@media (max-width: 768px){
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 11px;
    font-size: 0.98em;
    gap: 17px;
  }
  .cookie-actions{gap:7px;}
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  z-index: 2200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,45,69,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 28px 16px 36px 17px;
  box-shadow: 0 8px 36px #1C3D5A33;
  max-width: 405px;
  width: 91vw;
  padding: 40px 24px 27px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  min-width: 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--secondary);
  border: none;
  color: var(--primary);
  font-size: 1.7rem;
  padding: 3px 11px 7px 11px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.19s, color 0.13s;
}
.cookie-modal-close:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-modal-content h3 {
  margin-bottom: 7px;
  font-size: 1.18rem;
  color: var(--primary);
}
.cookie-modal-content ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.cookie-modal-content li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 22px;
  display: inline-block;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #eee;
  border-radius: 13px;
  transition: background 0.24s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--secondary);
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 19px;
  width: 19px;
  left: 2px;
  bottom: 1.5px;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 50%;
  transition: transform 0.24s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}
.toggle-switch input:disabled + .toggle-slider {
  background: #f3ebe4;
}
.toggle-switch input:disabled + .toggle-slider:before {
  background: #e9e0d2;
  border: 1.5px solid #e6d3bc;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  padding-top: 6px;
  justify-content: flex-end;
}

@media (max-width: 700px){
  .cookie-modal-content{max-width:97vw;padding:20px 7px;}
}

/* OTHER LAYOUT */
ul, ol {
  margin-bottom: 15px;
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

/* GEOMETRIC DECORATIVE ELEMENTS */
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -22px;
  left: -22px;
  width: 78px;
  height: 40px;
  background: #F4A25915;
  border-radius: 19px 58px 16px 19px;
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -23px;
  right: -17px;
  width: 58px;
  height: 23px;
  background: #1C3D5A0c;
  border-radius: 9px 19px 38px 17px;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px){
  .section:before, .section:after{display: none;}
}

/* FOCUS STATE VISIBILITY */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .mobile-menu-close:focus-visible, .cookie-btn:focus-visible, .cookie-settings-btn:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #F4A25922;
}

/* Z-INDEX LAYERING */
header{z-index:1020;}
.mobile-menu{z-index:1100;}
.cookie-consent-banner{z-index:2140;}
.cookie-modal{z-index:2200;}

/* SPACINGS PATTERNS ENFORCEMENT*/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* SPECIAL FORMS AND BUTTONS (FOR FUTURE EXTENSION) */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border-radius: 9px;
  border: 2px solid #e7e9ed;
  margin-bottom: 18px;
  box-shadow: 0 1px 5px #F4A25925;
  width: 100%;
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  outline: none;
}

/* TRANSITIONS AND MICRO-INTERACTIONS */
.card, .feature, .cta-btn, .testimonial-card, .main-nav a, .footer-links a {
  transition: box-shadow 0.20s cubic-bezier(0.72,0.01,0.33,1),
              transform 0.16s,
              background 0.15s, 
              color 0.16s, 
              border-color 0.16s;
}

/* END STYLES */
