/* =========================================================
   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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background-color: #F9F9F9;
  color: #222;
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #9D2235;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #16313A;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
}
hr {
  border: none;
  border-top: 1px solid #ECECEC;
  margin: 24px 0;
}

/* =========================================================
   Font Imports (Serif for Headings, Sans-serif for Body)
   ========================================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

:root {
  --primary: #9D2235;
  --secondary: #16313A;
  --accent: #F3F6F7;
  --muted: #ECECEC;
  --body: #222;
  --heading: #16313A;
  --shadow: 0 4px 24px rgba(22, 49, 58, 0.09);
  --radius: 14px;
}

/* =========================================================
   Typography & Headings (Elegant Classic)
   ========================================================= */
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: var(--heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-family: 'Open Sans', 'Georgia', serif;
  color: var(--body);
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.93rem;
  color: #666;
}

/* Elegant blockquote */
blockquote {
  font-style: italic;
  color: #4A4A4A;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0 24px 0;
}

/* =========================================================
   Layout Containers
   ========================================================= */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
/* Cards Layout (Flexbox) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.card {
  flex: 1 1 290px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(22, 49, 58,0.13);
  transform: translateY(-4px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
}
.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(22,49,58,.10);
  min-width: 260px;
  flex: 1 1 310px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(157,34,53, .13);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  color: var(--secondary);
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card .reviewer {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.01rem;
}
.stars {
  display: flex;
  gap: 2px;
}
.feature-grid, .service-cards, .service-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .service-cards > div, .service-detail-list > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  min-width: 200px;
}
.feature-grid > div:hover, .service-cards > div:hover, .service-detail-list > div:hover {
  box-shadow: 0 6px 30px rgba(157,34,53,.10);
  transform: scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  margin-bottom: 28px;
}
.faq-section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.faq-accordion h2 {
  font-size: 1.25rem;
  margin-bottom: 7px;
  font-family: 'Montserrat', 'Georgia', serif;
  color: var(--primary);
}
.faq-accordion p {
  margin-left: 2px;
}
.faq-cta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.confirmation-message {
  font-size: 1.15rem;
  margin-bottom: 24px;
  color: var(--secondary);
}
/* Pricing Table (classic style) */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  margin-bottom: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--muted);
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--accent);
  font-family: 'Montserrat','Georgia', serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 20px 0 24px 0;
}
.service-tabs li {
  padding: 10px 18px;
  background: var(--muted);
  border-radius: 100px;
  font-family: 'Open Sans','Georgia', serif;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.service-tabs li:hover {
  background: var(--primary);
  color: #fff;
}
.service-inclusions {
  margin: 18px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.no-hidden-costs {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 18px 16px;
  font-size: 1.04rem;
  margin-bottom: 14px;
  color: var(--secondary);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat','Georgia', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  border-radius: 100px;
  padding: 12px 34px;
  box-shadow: 0 2px 12px rgba(157,34,53,0.10);
  margin: 0;
  border: none;
  outline: none;
  transition: background 0.18s, transform 0.13s, box-shadow 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #7d182b;
  transform: translateY(-2px) scale(1.032);
  box-shadow: 0 4px 20px rgba(157,34,53,0.15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  font-family: 'Montserrat','Georgia',serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1.5px solid var(--primary);
  padding: 11px 30px;
  transition: background 0.18s, color 0.18s, border 0.18s, transform 0.12s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.03);
}

/* =========================================================
   Header & Navigation
   ========================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(22,49,58,0.06);
  position: sticky;
  top: 0; z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 22px 20px;
  max-width: 1170px;
  margin: 0 auto;
}
.logo-link img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 38px;
}
.main-nav ul li a {
  font-family: 'Open Sans','Georgia',serif;
  font-size: 1.01rem;
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--accent);
  color: var(--primary);
}
.main-nav .btn-primary {
  margin-left: 28px;
  padding: 11px 28px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  margin-left: 18px;
  font-size: 2.2rem;
  color: var(--primary);
  border: 1px solid var(--muted);
  box-shadow: 0 2px 12px rgba(157,34,53,0.08);
  z-index: 31;
  transition: background 0.18s, color 0.15s, border 0.14s;
}
.mobile-menu-toggle:active {
  background: var(--accent);
  color: var(--secondary);
}

/* ================= Mobile Navigation =================== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(22,49,58, 0.44);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 50;
  transition: opacity 0.25s;
}
.mobile-menu.open {
  display: flex;
  animation: menuFadeIn 0.29s; /* fallback simple fade */
}
@keyframes menuFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-nav {
  background: #fff;
  width: 86vw;
  max-width: 340px;
  height: 100%;
  box-shadow: -2px 0 30px rgba(22,49,58,0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px 32px 27px;
  transform: translateX(100%);
  transition: transform 0.31s cubic-bezier(.77,0,.18,1);
  position: relative;
}
.mobile-menu.open .mobile-nav {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px; right: 24px;
  background: var(--muted);
  color: var(--secondary);
  font-size: 2.1rem;
  padding: 3px 15px;
  border-radius: 18px;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(22,49,58,0.08);
  border: 1px solid var(--accent);
  transition: background 0.17s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-nav a {
  display: block;
  margin-bottom: 12px;
  font-size: 1.17rem;
  font-family: 'Montserrat','Georgia',serif;
  color: var(--secondary);
  padding: 10px 7px 10px 0;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* =========================================================
   Hero, CTA, and Section Styling
   ========================================================= */
.hero {
  background: var(--accent);
  padding: 64px 0 54px 0;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
}
.hero p {
  color: var(--secondary);
  font-size: 1.16rem;
}
.cta {
  margin-bottom: 60px;
  padding: 46px 18px 40px 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.cta h2 {
  margin-bottom: 16px;
  color: var(--primary);
}
.cta p {
  margin-bottom: 26px;
  color: var(--secondary);
}

/* ================== Footer ==================== */
footer {
  background: #fff;
  border-top: 1.5px solid var(--muted);
  margin-top: 54px;
}
.footer-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 120px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Open Sans','Georgia',serif;
  font-size: 1.04rem;
  margin-bottom: 2px;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--primary);
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}
.footer-logo img {
  width: 36px; height: 36px;
}
.footer-tagline {
  color: var(--primary);
  font-family: 'Montserrat','Georgia',serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  min-width: 210px;
  color: var(--secondary);
}
.footer-contact img {
  width: 18px; height: 18px;
  margin-right: 9px;
  vertical-align: text-bottom;
}
.footer-contact span {
  display: flex;
  align-items: center;
}

/* ================== Miscellaneous Section Styles ==================== */
.service-inclusions li:before, .text-section ul li:before, .service-detail-list > div:before, .feature-grid > div:before {
  display: none;
}
.address-text {
  background: var(--accent);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(22,49,58,0.06);
  margin-bottom: 20px;
  font-size: 1.04rem;
}
.office-hours {
  margin-top: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 18px 16px;
  color: var(--secondary);
  box-shadow: 0 2px 10px rgba(22,49,58,0.11);
  font-family: 'Open Sans',serif;
  font-size: 1.05rem;
}
.thank-you-section {
  margin-bottom: 54px;
}

/* ================= Cookie Consent ================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 70;
  background: #fff;
  color: var(--body);
  box-shadow: 0 -2px 24px rgba(22,49,58,.13);
  border-radius: 18px 18px 0 0;
  padding: 22px 12px 22px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: 'Open Sans','Georgia',serif;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.19s, transform 0.27s;
}
.cookie-consent-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 220px;
}
.cookie-consent-banner button {
  margin-left: 6px;
}
.cookie-btn {
  font-family: 'Montserrat','Georgia',serif;
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.02rem;
  border: none;
  transition: background 0.12s, color 0.12s, box-shadow 0.15s;
  margin-right: 7px;
}
.cookie-btn.accept {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 8px rgba(157,34,53,0.10);
}
.cookie-btn.accept:hover {
  background: #7d182b;
}
.cookie-btn.reject {
  background: var(--muted);
  color: var(--secondary);
}
.cookie-btn.reject:hover {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 1.3px solid var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--primary);
  color: #fff;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 99;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(22,49,58, 0.39);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #fff;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 8px 36px rgba(22,49,58,0.18);
  padding: 32px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalSlideIn 0.29s;
}
@keyframes modalSlideIn {
  from { transform: translateY(60%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px; top: 18px;
  background: var(--muted);
  color: var(--secondary);
  border-radius: 50%;
  font-size: 1.3rem;
  width: 34px; height: 34px;
  border: none;
  box-shadow: 0 2px 10px rgba(22,49,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  font-size: 1.03rem;
}
.cookie-category label {
  font-weight: 600;
  color: var(--secondary);
  flex: 1;
}
.cookie-category .toggle {
  width: 44px; height: 24px;
  border-radius: 14px;
  background: var(--muted);
  position: relative;
  cursor: pointer;
  margin-left: 4px;
}
.cookie-category .toggle input[type="checkbox"] {
  display: none;
}
.cookie-category .toggle span {
  position: absolute;
  top: 3px; left: 4px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(22,49,58,.10);
  transition: left 0.17s, background 0.16s;
}
.cookie-category .toggle input:checked + span {
  left: 22px;
  background: var(--primary);
}
.cookie-category .essential label {
  color: var(--primary);
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .container {
    max-width: 92vw;
    padding-left: 7px; padding-right: 7px;
  }
  .footer-wrapper, .main-nav {
    max-width: none;
  }
}
@media (max-width: 900px) {
  .footer-wrapper {
    gap: 27px 10px;
    flex-wrap: wrap;
  }
  .feature-grid > div, .service-cards > div, .service-detail-list > div {
    min-width: 165px;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.03rem;
  }
  h2 {
    font-size: 1.37rem;
  }
  .hero {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 44px 0 30px 0;
  }
  .footer-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 19px 0;
  }
  .main-nav {
    flex-direction: row;
    padding: 10px 8px 10px 8px;
    gap: 0;
  }
  .main-nav ul,
  .main-nav .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero .container {
    padding: 0 8px;
  }
  .section {
    padding: 29px 7px;
    margin-bottom: 34px;
  }
  .card-container,
  .content-grid,
  .feature-grid,
  .service-cards,
  .service-detail-list,
  .testimonial-list {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid > div, .service-cards > div, .service-detail-list > div, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .testimonial-list {
    margin-top: 10px;
  }
  .address-text, .office-hours {
    font-size: .99rem;
    padding: 13px 6px;
  }
  .cta {
    padding: 25px 7px 22px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .mobile-menu {
    align-items: flex-start;
    justify-content: flex-end;
  }
  .mobile-nav {
    width: 93vw; max-width: unset;
    padding: 19px 4vw 33px 8vw;
    font-size: 1.04rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.28rem;
  }
  h1 {
    font-size: 1.31rem;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 0.98rem;
    padding: 11px 16px;
  }
  .container {
    padding: 0 2px;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px 5px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 17px 4vw 24px 5vw;
  }
}

/* ============ Utility Helpers ============ */
.hide {
  display: none !important;
}

/* Focus Styles for Accessibility */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--accent);
}

/* ============= Micro-Interactions ============ */
.card, .testimonial-card, .btn-primary, .btn-secondary, .feature-grid > div, .service-cards > div {
  transition: box-shadow 0.18s, transform 0.15s, background 0.18s, color 0.18s;
}

/********************************************
  END ELEGANT CLASSIC CSS
********************************************/
