/*
Theme Name: Wellbeing Co
Theme URI: https://wellbeing.co
Author: Wellbeing Co
Author URI: https://wellbeing.co
Description: A professional WordPress theme for corporate mental health and employee wellbeing services. Features a clean, modern design with teal accent colors, dark/light mode support, and sections for services, testimonials, and contact forms.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wellbeing-co
Tags: one-page, business, corporate, health, wellness, responsive, custom-colors, custom-logo, dark-mode
*/

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --primary: rgb(37 197 218 );
  --primary-dark: rgb(37 197 218);
  --primary-light: rgba(4, 221, 208, 0.1);
  --primary-shadow: rgba(4, 221, 208, 0.2);
  --bg-light: #f6f8f8;
  --bg-dark: #121f20;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --border-radius-full: 9999px;
  --font-display: 'DM Sans', sans-serif;
  --transition: all 0.2s ease;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-primary: 0 10px 15px -3px var(--primary-shadow), 0 4px 6px -4px var(--primary-shadow);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dark-mode {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
}
h2 {
  margin: 2rem 0;
}
p {
  margin: 1rem 0;
}
ol {
  padding-left: 2rem;
}

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section-padding {
  padding: 5rem 0;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-xl);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-dark);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 15px 20px -3px var(--primary-shadow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(4, 221, 208, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
}

body.dark-mode .btn-outline {
  color: var(--text-light);
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(246, 248, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(4, 221, 208, 0.1);
}

body.dark-mode .site-header {
  background-color: rgba(18, 31, 32, 0.85);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-logo .logo-icon {
  background-color: var(--primary);
  padding: 0.375rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.site-logo .logo-icon span {
  font-size: 1.5rem;
}

.site-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

body.dark-mode .site-logo .logo-text {
  color: var(--text-light);
}

/* Desktop Nav */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle-btn,
.menu-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition);
}

body.dark-mode .theme-toggle-btn,
body.dark-mode .menu-toggle-btn {
  color: var(--text-light);
}

.theme-toggle-btn:hover,
.menu-toggle-btn:hover {
  background-color: var(--primary-light);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: var(--border-radius);
  }
}

.menu-toggle-btn {
  display: flex;
}

@media (min-width: 1024px) {
  .menu-toggle-btn {
    display: none;
  }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(4, 221, 208, 0.1);
  padding: 1rem 0;
  background-color: var(--bg-light);
}

body.dark-mode .mobile-nav {
  background-color: var(--bg-dark);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

body.dark-mode .mobile-nav a {
  color: var(--text-light);
}

.mobile-nav a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 6rem 0 8rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--border-radius-full);
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

body.dark-mode .hero-title {
  color: var(--text-light);
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.7;
}

body.dark-mode .hero-description {
  color: #94a3b8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--primary-light);
  background-size: cover;
  background-position: center;
}

@media (min-width: 1024px) {
  .hero-image {

  }
  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.hero-badge-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  display: none;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(4, 221, 208, 0.1);
}

body.dark-mode .hero-badge-float {
  background-color: var(--slate-800);
}

@media (min-width: 768px) {
  .hero-badge-float {
    display: flex;
  }
}

.hero-badge-float .badge-icon {
  background-color: #dcfce7;
  padding: 0.75rem;
  border-radius: var(--border-radius-full);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-float .badge-title {
  font-size: 0.875rem;
  font-weight: 700;
}

.hero-badge-float .badge-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  background-color: var(--primary-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

body.dark-mode .section-description {
  color: #94a3b8;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.post-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;

}

.post-grid a {
  width: calc(50% - 1.25rem);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.post-grid > .white,
.services-grid > .white {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 1rem;
  transition: 0.25s ease;
}
.services-grid > .white:hover {
  opacity: 0.75;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .post-grid a {
  width: 100%;
}
}



.service-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(4, 221, 208, 0.1);
  transition: var(--transition);
}

body.dark-mode .service-card {
  background-color: var(--slate-800);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  color: var(--primary);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--text-dark);
}

.service-icon span {
  font-size: 1.875rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.9375rem;
}

body.dark-mode .service-description {
  color: #94a3b8;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.service-link:hover {
  gap: 0.75rem;
}

.service-link span {
  font-size: 0.875rem;
}

/* =========================================================
   ABOUT / WHY US SECTION
   ========================================================= */
.about-section {
  overflow: hidden;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    flex-direction: row;
  }
}

.stats-column {
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .stats-column {
    width: 40%;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.stat-card.bg-primary {
  background-color: var(--primary);
  color: var(--text-dark);
}

.stat-card.bg-dark {
  background-color: var(--slate-800);
  color: var(--text-light);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

body.dark-mode .about-description {
  color: #94a3b8;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: var(--border-radius-full);
  background-color: rgba(4, 221, 208, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-icon span {
  font-size: 0.875rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

body.dark-mode .feature-desc {
  color: #94a3b8;
}

/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */
.testimonials-section {
  background-color: var(--bg-light);
}

body.dark-mode .testimonials-section {
  background-color: var(--bg-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(4, 221, 208, 0.05);
  font-style: italic;
}

body.dark-mode .testimonial-card {
  background-color: var(--slate-800);
}

.testimonial-card:last-child {
  display: none;
}

@media (min-width: 1024px) {
  .testimonial-card:last-child {
    display: block;
  }
}

.testimonial-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.9375rem;
}

body.dark-mode .testimonial-text {
  color: #cbd5e1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius-full);
  background-color: rgba(4, 221, 208, 0.3);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 700;
  font-style: normal;
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: normal;
}

/* =========================================================
   CONTACT FORM SECTION
   ========================================================= */
.contact-section {
  padding: 5rem 0;
}

.contact-wrapper {
  background-color: var(--primary-light);
  border-radius: 2.5rem;
  padding: 2rem;
  border: 1px solid rgba(4, 221, 208, 0.1);
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-wrapper {
    padding: 4rem;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-title {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-subtitle {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

body.dark-mode .contact-subtitle {
  color: #94a3b8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-xl);
  border: none;
  background-color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  outline: none;
}

body.dark-mode .form-input,
body.dark-mode .form-textarea {
  background-color: var(--slate-800);
  color: var(--text-light);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

.form-input:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.form-textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-submit {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.125rem;
  border-radius: var(--border-radius-xl);
  margin-top: 0.5rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--slate-900);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand .logo-text {
  color: var(--text-light);
}

.footer-description {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--border-radius-full);
  background-color: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--text-dark);
}

.social-link span {
  font-size: 1.25rem;
}

.footer-heading {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact-item .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  text-align: center;
  color: #64748b;
  font-size: 0.75rem;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--text-dark);
  border: none;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  opacity: 0;
  transform: translateY(1rem);
  transition: var(--transition);
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* =========================================================
   WORDPRESS CORE STYLES
   ========================================================= */
.wp-block-image img {
  border-radius: var(--border-radius-lg);
}

.aligncenter {
  text-align: center;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999rem;
  top: 2.5rem;
  z-index: 999999;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--text-dark);
  font-weight: 700;
}

.skip-link:focus {
  left: 6px;
}

/* MENUS */
.nav-menu {
  display: flex;
  flex-direction: row;
}
.nav-menu > li {
  margin-right: 2rem;
}
.nav-menu > li:last-child {
  margin-right: 0;
}


table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  overflow: hidden;
}

table thead {
  background: #f5f7f8;
}

table th {
  text-align: left;
  padding: 18px 20px;
  font-weight: 700;
  color: #1f2937;
  border-bottom: 1px solid #e5e7eb;
}

table td {
  padding: 18px 20px;
  vertical-align: top;
  border-bottom: 1px solid #f0f0f0;
  color: #4b5563;
}

table tbody tr:last-child td {
  border-bottom: none;
}

table tbody tr:nth-child(even) {
  background: #fafafa;
}

table tbody tr:hover {
  background: #f3f7f6;
  transition: background 0.2s ease;
}

.contact-section.white {
  background-color: #FFFFFF;
}

.single-post {
  padding-bottom: 2rem !important;
}
ul {
  padding-left: 1rem;
}
.post-content li  {
  list-style: circle;
  margin-bottom: 0.25rem;
}
li  {
  list-style: circle;
  margin-bottom: 0.25rem;
}
.nav-menu li {
  list-style: none !important;
}