/* ====================================================
   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, 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;
}

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

body {
  line-height: 1.5;
  background: #f8fafd;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222a34;
  font-size: 16px;
  min-height: 100vh;
}

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

a {
  color: #234B78;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #bb9b48;
}

ul, ol { list-style-position: outside; margin-left: 1.5em; }
strong, b { font-weight: 700; }

/* ====================================================
   FONTS & CSS VARIABLES
   ==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Roboto:wght@400;500;700&display=swap');
:root {
  --color-primary: #234B78;
  --color-secondary: #fff;
  --color-bg: #f8fafd;
  --color-premium-dark: #12161b;
  --color-accent: #228067;
  --color-gold: #bb9b48;
  --color-gold-contrast: #fffbee;
  --color-text: #222a34;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-md: 0 4px 24px 0 rgba(27,34,43,0.09);
  --shadow-lg: 0 10px 35px 0 rgba(43,27,19,0.10);
  --transition: all 0.25s cubic-bezier(.5,1,.5,1);
  --container-width: 1200px;
}

/* ====================================================
   UTILITIES & CONTAINERS
   ==================================================== */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--container-width);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

main > section:not([class]) {
  margin-bottom: 60px;
  padding: 40px 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 950px;
  margin: 0 auto;
}

.text-section {
  align-items: flex-start;
  max-width: 750px;
}
.text-section p {
  font-size: 1.13em;
  margin-top: 0.7em;
  color: var(--color-text);
}

.section:last-child { margin-bottom: 0; }

/* ====================================================
   TYPOGRAPHY
   ==================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-premium-dark);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.3rem; margin-bottom: 0.9em; }
h2 { font-size: 1.8rem; margin-bottom: 0.7em; }
h3 { font-size: 1.3rem; margin-bottom: 0.5em; font-weight: 600; }
h4 { font-size: 1.13rem; }
h2 + h3, h3 + h4 { margin-top: 1.2em; }

@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1.03rem; }
}

p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1em;
  color: var(--color-text);
}

ul, ol {
  margin-bottom: 1.25em;
  margin-top: .5em;
}
ul li, ol li {
  margin-bottom: .44em;
}

blockquote {
  border-left: 4px solid var(--color-gold);
  margin: 1.7em 0;
  padding: 1em 1.7em;
  background: #fffbee;
  color: #715f2a;
  font-style: italic;
  border-radius: var(--radius-sm);
}

/* ====================================================
   PRIMARY BUTTONS & CTAS
   ==================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 36px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, #ffe2a0 0%, var(--color-gold) 90%);
  color: var(--color-premium-dark);
  font-family: var(--font-display);
  font-size: 1.11em;
  font-weight: 700;
  letter-spacing: .03em;
  transition: var(--transition);
  border: none;
  box-shadow: 0 3px 14px 0 rgba(216,184,98,0.06);
  cursor: pointer;
  position: relative;
  text-shadow: 0 0 1px rgba(255,230,160,0.1);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #ffefbe 20%, #dfc36d 90%);
  color: var(--color-premium-dark);
  box-shadow: 0 6px 18px 0 rgba(187,155,72,0.17);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

a.btn-primary, a.btn-secondary {
  text-decoration: none;
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 2px 18px 0 rgba(51,61,76,0.07);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90px;
  position: relative;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  height: 64px;
  margin-right: 40px;
  z-index: 2;
}
.logo img {
  max-height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  flex: 1;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.02em;
  padding: 4px 2px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0%;
  background: var(--color-gold);
  border-radius: 3px;
  transition: width 0.28s cubic-bezier(.5,1,.5,1);
  margin-top: 2px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 50%;
}

header .btn-primary {
  margin-left: 24px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2em;
  color: var(--color-primary);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  margin-left: auto;
  cursor: pointer;
  z-index: 11;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eaeaea;
}

/* Mobile Navigation Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: #222a34e0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.75, 0, .33, 1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2em;
  margin: 22px 34px 0 0;
  cursor: pointer;
  z-index: 91;
  align-self: flex-end;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-gold);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: center;
  margin-top: 48px;
}
.mobile-nav a {
  color: #fffbee;
  font-family: var(--font-display);
  font-size: 1.25em;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  width: 90vw;
  transition: background .14s, color .14s;
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-gold);
  color: #222a34;
}

/* Hide nav on mobile, show burger */
@media (max-width: 990px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  header .btn-primary { display: none; }
}
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/* ===================================================
   SECTIONS & FLEX LAYOUTS
   =================================================== */
.section, main > section:not([class]) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--color-secondary);
}

/* pattern: .card-container { display: flex; flex-wrap: wrap; gap: 24px; } */
.card-container, .service-tiles, .service-categories, .team-bios, .pricing-table, .feature-grid, .faq-categories, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffefb;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 30px 24px 28px 24px;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 250px;
  border: 1px solid #f3e1b5;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  max-width: 42px;
  margin-bottom: .2em;
}
.feature-item h3 {
  color: var(--color-premium-dark);
  font-weight: 700;
  margin-bottom: 5px;
}
.feature-item p {
  color: #484838;
  font-size: 1em;
}
.feature-item:hover {
  box-shadow: 0 8px 28px 0 rgba(187, 155, 72, 0.13), var(--shadow-md);
  transform: translateY(-4px) scale(1.025);
}

.team-bio {
  background: #fffbe6;
  border: 1.5px solid #ecd382;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: 0 2px 16px rgba(218,200,120,0.11);
  flex: 1 1 220px;
  min-width: 200px;
  transition: box-shadow 0.17s;
  margin-bottom: 20px;
}
.team-bio h3 {
  color: var(--color-gold);
  font-size: 1.19rem;
  font-weight: 700;
}

.service-item {
  background: #fafdff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--color-gold);
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 20px;
  padding: 24px 16px 20px 25px;
  transition: box-shadow 0.22s;
}
.service-item h3, .service-item h2 {
  margin-bottom: .7em;
  color: var(--color-primary);
}
.service-item:hover {
  box-shadow: 0 4px 22px 0 rgba(35,75,120,.11), var(--shadow-md);
}

.pricing-table {
  width: 100%;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}
.package {
  background: #fffefb;
  border: 1.5px solid #f3e1a8;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 20px;
  padding: 28px 18px 32px 18px;
  transition: box-shadow 0.18s, transform 0.17s;
  position: relative;
  text-align: center;
}
.package.highlight {
  border: 2.5px solid var(--color-gold);
  box-shadow: 0 8px 36px 0 rgba(187,155,72,.13), var(--shadow-md);
  background: #fffbee;
  transform: scale(1.045);
  z-index: 2;
}
.package h2 {
  color: var(--color-premium-dark);
  font-size: 1.33rem;
  font-weight: 800;
  margin-bottom: 0.9em;
}
.package ul {
  margin-bottom: 1.5em;
}
.package p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.13em;
}
.package-comparison h3 {
  color: var(--color-primary);
  margin-bottom: .7em;
}

/**** Testimonials ****/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  margin-bottom: 22px;
  background: #f9f8f5;
  border: 1.5px solid #eddebc;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.20s, border-color 0.18s;
}
.testimonial-card strong {
  color: var(--color-gold);
  font-weight: 700;
}
.testimonial-card p {
  font-size: 1.05em;
  color: var(--color-premium-dark);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(35,75,120,0.10), var(--shadow-md);
  border-color: var(--color-gold);
}

/* FAQ Styles */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}
.faq-categories button {
  background: #f8f5ea;
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  border: 1.4px solid #e0c888;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 26px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.faq-categories button:hover, .faq-categories button:focus {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}
.question-list li {
  margin-bottom: 30px;
  background: #fffefb;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 16px 22px 14px 22px;
  border-left: 4px solid #e6c36b;
}
.question-list h3 {
  color: var(--color-primary);
  font-size: 1.1em;
  margin-bottom: .3em;
}

.contact-prompt.text-section {
  background: #fffbee;
  border-left: 5px solid var(--color-gold);
  box-shadow: 0 3px 12px 0 rgba(187,155,72,0.07);
}

.map-snippet, .value-highlights {
  background: #f7f3e9;
  border-radius: var(--radius-sm);
  border: 1.2px solid #ecd382;
  box-shadow: 0 1px 7px rgba(245,220,120,0.07);
  padding: 18px 18px 12px 18px;
  margin-top: 14px;
}

.value-highlights p {
  font-size: 1.09em;
  color: var(--color-gold);
}

/**** OL Process Steps ****/
ol {
  margin-left: 1.5em;
  padding-left: 4px;
  margin-bottom: 1.4em;
}
ol li {
  margin-bottom: 1.1em;
}
/****
Section Spacing for Responsive
****/
@media (max-width: 650px) {
  .container, .section, main > section:not([class]) {padding-left: 8px; padding-right: 8px;}
  .section, main > section:not([class]) { padding: 24px 6px; }
}

/****
Responsive: Flex Layout Rules for Mobile
****/
@media (max-width: 1024px) {
  .card-container, .service-tiles, .service-categories, .team-bios, .pricing-table, .feature-grid, .faq-categories, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .team-bio, .service-item, .package {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background: var(--color-premium-dark);
  color: #fffbee;
  padding: 36px 0 24px 0;
  box-shadow: 0 -2px 14px #e3c89023;
  font-size: 1em;
  position: relative;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1200px;
}
.logo-footer {
  flex-basis: 120px;
  display: flex;
  align-items: center;
  margin-right: 44px;
}
.logo-footer img {
  max-width: 52px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 195px;
}
.footer-nav a {
  color: #fffbee;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01em;
  opacity: 0.82;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
  opacity: 1;
}
.footer-contact p {
  color: #fffbee;
  font-size: 1em;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.88;
}
footer p {
  margin: 0;
  opacity: 0.65;
  font-size: 0.97em;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .logo-footer {margin-bottom: 8px;}
}

/* ====================================================
   COOKIE CONSENT BANNER + PREFERENCES MODAL
   ==================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-premium-dark);
  color: #fffbee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px 24px 24px;
  z-index: 150;
  box-shadow: 0 0 16px rgba(24,19,38,0.09);
  border-top: 3px solid var(--color-gold);
  font-family: var(--font-body);
  font-size: 1em;
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(.42,1,.36,1), opacity 0.3s;
}
.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-consent-banner p {
  color: #fffbee;
  margin: 0 18px 0 0;
  flex: 3 1 280px;
}
.cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: var(--color-gold);
  color: var(--color-premium-dark);
  font-family: var(--font-display);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.cookie-btn.settings {
  background: none;
  color: var(--color-gold);
  border: 1.2px solid var(--color-gold);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffe7a4;
  color: var(--color-premium-dark);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

@media (max-width: 680px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.97em;
    padding: 16px 11px 20px 11px;
  }
  .cookie-btn { padding: 9px 12px; font-size: 1em; }
}

.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,42,52,0.77);
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.33s;
  visibility: hidden;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: #fffbee;
  color: #252627;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px 0 rgba(35,75,120,0.17);
  max-width: 420px;
  width: 96vw;
  padding: 36px 30px 28px 32px;
  position: relative;
  z-index: 321;
  font-family: var(--font-body);
  animation: cookiePopIn .7s cubic-bezier(.25,1.8,.68,1) both;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.18em;
  color: var(--color-gold);
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category label {
  flex: 1;
  font-weight: 700;
  color: var(--color-primary);
}
.cookie-modal .cookie-toggle {
  accent-color: var(--color-gold);
  width: 24px;
  height: 24px;
  transition: accent-color .12s;
}
.cookie-modal .category-desc {
  margin-left: 42px;
  font-size: 0.96em;
  color: #777;
}
.cookie-modal .category-disabled {
  opacity: 0.57;
}
.cookie-modal .modal-actions {
  margin-top: 27px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@keyframes cookiePopIn {
  from { transform: translateY(30px) scale(0.91); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* ====================================================
   MICRO-INTERACTIONS & TRANSITIONS
   ==================================================== */
button, .btn-primary, .btn-secondary, .cookie-btn {
  transition: background .18s, color .19s, box-shadow .17s, border-color .18s, transform .15s;
}
a, .main-nav a, .mobile-nav a {
  transition: color .14s, background .12s, opacity .1s;
}
.feature-item, .service-item, .team-bio, .package, .testimonial-card {
  transition: box-shadow .16s, border-color .13s, transform .14s;
}

/* ====================================================
   OTHER COMPONENTS
   ==================================================== */
.contact-info p, .footer-contact p {
  font-size: 1em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-snippet {
  background: #fffbee;
  border-left: 5px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px 9px 17px;
  margin-top: 15px;
}
.faq-snippet h3 {
  color: var(--color-gold);
  font-size: 1.13em;
  margin-bottom: 0.6em;
}
.faq-snippet ul {
  padding-left: 20px;
  margin-bottom: 0.7em;
}
.faq-snippet a { color: var(--color-gold); font-weight: 600; }
.faq-snippet a:hover {text-decoration: underline;}

/**** Card-specific Spacing/Patterns ****/
.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; }

/* Prevent content overlap and ensure min spacing */
.card, .feature-item, .service-item, .package, .team-bio, .testimonial-card {
  margin-bottom: 20px;
}

/**** End of Styles ****/
