/* ============================================================
   SKIPPY BINS BRISBANE — DESIGN SYSTEM
   Brand: Red #DD2132 | Yellow #FDD201
   ============================================================ */

/* --- CSS RESET & VARIABLES --- */
:root {
  --red: #a70e1c;
  --red-dark: #B81A2A;
  --red-light: #F4D0D4;
  --yellow: #FDD201;
  --yellow-dark: #D4B200;
  --yellow-light: #FFF8CC;
  --black: #1A1A1A;
  --dark: #2D2D2D;
  --gray-900: #333333;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #CCCCCC;
  --gray-100: #F2F2F2;
  --white: #FFFFFF;
  --green: #2E7D32;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.18);
  --radius: 6px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container { width: 92%; max-width: var(--max-width); margin: 0 auto; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  text-transform: uppercase;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.3rem; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--black);
}
.btn-secondary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn-sm { padding: 10px 22px; font-size: 0.95rem; }
.btn-lg {
    padding: 10px 34px;
    font-size: 1rem;
}

/* --- TOP BAR --- */
.top-bar {
  background: var(--black);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--yellow); transition: color var(--transition); }
.top-bar a:hover { color: var(--white); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }

/* --- HEADER / NAV --- */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo {
    display: flex;
}
.logo img {
    width: 200px;
}

/*.logo {*/
/*  font-family: var(--font-heading);*/
/*  font-size: 1.8rem;*/
/*  font-weight: 700;*/
/*  color: var(--red);*/
/*  text-transform: uppercase;*/
/*  letter-spacing: 1px;*/
/*}*/
/*.logo span { color: var(--yellow); }*/

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-900);
  transition: color var(--transition);
  letter-spacing: 0.5px;
}
.nav a:hover { color: var(--red); }
.nav .btn-primary { color: var(--white); padding: 10px 22px; }

/* Dropdown */

.nav-item { position: relative; }
.nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 220px;
  z-index: 999;
  padding: 8px 0;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--gray-100); color: var(--red); }

/* Mobile Nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 992px) {
    .nav-item { width: 100%; }
  .mobile-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav.active { display: flex; }
  .nav a { width: 100%; padding: 12px 16px; }
  .nav-item .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 16px;
  }
}

@media (max-width: 403px) {
   .top-bar-left {
    gap: 11px;
}
.top-bar {
    font-size: 13px;
} 
}
@media (max-width: 376px) {
    .top-bar {
    font-size: 11px;
} 
}
/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* FIXED: stable pseudo elements */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

/* pre-defined fixed sizes (IMPORTANT FOR CLS) */
.hero::before {
  top: -250px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: var(--red);
  opacity: 0.08;
}

.hero::after {
  bottom: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--yellow);
  opacity: 0.06;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 700px; }

.hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 0.6rem;
}

.hero h1 .highlight { color: var(--yellow); }

.hero .subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  margin-right: 15px;
}

.hero .hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero .trust-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero .trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.hero .trust-badge svg {
  fill: var(--yellow);
  width: 20px;
  height: 20px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-image-placeholder {
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

/* mobile */
@media (max-width: 768px) {
  .hero { padding: 50px 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* --- SECTIONS --- */
.section { padding: 70px 0; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-red { background: var(--red); color: var(--white); }
.section-red h2, .section-red h3 { color: var(--white); }
.section-red p { color: rgba(255,255,255,0.85); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header .label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 8px;
}
.section-dark .section-header .label { color: var(--yellow); }

/* --- CARDS / GRID --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 1.4rem;
}

/* Bin Size Cards */
.bin-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.bin-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.bin-card-image {
  background: var(--gray-100);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  border-bottom: 3px solid var(--red);
}
.bin-card-body { padding: 24px; }
.bin-card-body h3 { margin-bottom: 8px; }
.bin-card-dims {
  display: flex;
  gap: 12px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.bin-card-dim {
  background: var(--gray-100);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
}
.bin-card-body .btn { width: 100%; margin-top: 12px; }

/* Popular tag */
.bin-card.popular { border-color: var(--yellow); }
.bin-card.popular .bin-card-image { border-bottom-color: var(--yellow); }
.popular-tag {
    position:absolute;
    top:0;
    left:0;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 8px;
}
.bin-card {
  position: relative;
}
/* --- WASTE TYPE CARDS --- */
.waste-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
  transition: all var(--transition);
}
.waste-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.waste-card h4 { color: var(--red); margin-bottom: 6px; }

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--red);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 24px; font-size: 1.1rem; }
.cta-banner .btn-secondary { font-size: 1.15rem; }

.cta-banner-dark {
  background: var(--black);
}

/* --- PROCESS / STEPS --- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.step-number {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 6px; }

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

/* --- TESTIMONIALS --- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--yellow);
}
.testimonial-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text { font-style: italic; color: var(--gray-700); margin-bottom: 16px; }
.testimonial-author { font-weight: 700; color: var(--black); font-size: 0.9rem; }
.testimonial-location { color: var(--gray-500); font-size: 0.85rem; }

/* --- SUBURB GRID --- */
.suburb-list {
  column-count: 4;
  column-gap: 24px;
}
.suburb-list a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.suburb-list a:hover { color: var(--red); }

@media (max-width: 768px) { .suburb-list { column-count: 2; } }
@media (max-width: 480px) { .suburb-list { column-count: 1; } }

/* --- FAQ ACCORDION --- */
.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  background: var(--white);
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-question .icon { color: var(--red); font-size: 1.2rem; transition: transform var(--transition); }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 18px;
  color: var(--gray-700);
  line-height: 1.8;
}
.faq-item.active .faq-answer { display: block; }

/* --- DIMENSIONS TABLE --- */
.dims-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.dims-table th {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 14px 18px;
  text-align: left;
}
.dims-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-300);
  font-size: 0.95rem;
}
.dims-table tr:nth-child(even) { background: var(--gray-100); }
.dims-table tr:hover { background: var(--yellow-light); }

/* --- SIDEBAR (Suburb pages) --- */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.sidebar-cta {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-cta h3 { color: var(--white); border-bottom-color: var(--yellow); }
.sidebar-cta p { color: rgba(255,255,255,0.9); }
.sidebar-cta .phone-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--yellow);
  display: block;
  margin: 12px 0;
}
.sidebar-cta .btn-secondary { width: 100%; }

@media (max-width: 992px) {
  .page-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  background: var(--gray-100);
  padding: 12px 0;
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--red); }
.breadcrumbs span { color: var(--gray-500); margin: 0 6px; }

/* --- FOOTER --- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer a {
  color: rgba(255,255,255,0.6);
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer a:hover { color: var(--yellow); }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--yellow); }
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.footer-contact-item a { display: inline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { display: inline; color: var(--yellow); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- CONTACT FORM --- */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--gray-900);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
}

/* --- UTILITY --- */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* --- IMAGE PLACEHOLDERS --- */
.img-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  min-height: 200px;
}

/* --- SCHEMA / SEO HIDDEN --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
#service-areas .grid-3 p {
    color: #000;
}
.footer-about {
    color: rgba(255,255,255,0.6);
}
.footer-bottom p {
    color: rgba(255,255,255,0.6);
}
#myIframe {
  width: 100%;
  border: none;
}
.iframe-wrapper {
    background: #FDD201;
    padding: 40px 20px;
    border-radius: 10px;
}
.seo-hidden {
  position: absolute;
  left: -9999px;
}
#how-it-works h3{color: rgb(26, 26, 26);margin-bottom:6px;font-family: Oswald, sans-serif; font-size: 20.8px; font-weight: 700; line-height: 24.96px;}
.shaad_book_form_head{color: rgb(26, 26, 26);margin-bottom:6px;font-family: Oswald, sans-serif; font-size: 20.8px; font-weight: 700; line-height: 24.96px;}
#waste-types h3{color: rgb(221, 33, 50); font-family: Oswald, sans-serif; font-size: 20.8px; font-weight: 700; line-height: 24.96px;}
.shadd_footer_title {
  color: rgb(255, 255, 255);
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 19.2px;
  margin: 0 0 16px 0;
}
.cta-banner {
    background: #c00819;
}
#testimonials .section-header .label{color: #c00819;}
#testimonials .testimonial-location {color: #1e1e1e;}
#testimonials .testimonial-text {color: #2d2c2c;}
#how-it-works .section-header .label { color: #c00819;}
#why-us h3{color: rgb(26, 26, 26);margin-bottom:6px;font-family: Oswald, sans-serif; font-size: 20.8px; font-weight: 700; line-height: 24.96px;}

.blog-card {
  display:flex;
  gap:20px;
  margin-bottom:30px;
  border-bottom:1px solid #eee;
  padding-bottom:20px;
}

.blog-card img {
  width:220px;
  border-radius:10px;
}
.blog-content h2 {
  font-size:1.4rem;
  margin-bottom:8px;
}
.read-more {
  color: var(--red);
  font-weight:600;
}
.recent-post {
    border-radius: 4px;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
    border: 1px solid #ededed;
    padding: 5px;
}
.recent-post img {
  width:60px;
  border-radius:6px;
}
.blog-single img.featured-img {
  width:100%;
  border-radius:15px;
  margin-bottom:20px;
}
.single-post h2, .single-post h3 { font-size: 30px; margin-top: 30px;}

.sidebar-widget span { font-size: 14px; line-height: 20px;}
.check-list {margin-top: 15px;}
.check-list li{display: flex; align-items: center;}
.check-list img { margin-right: 10px; width: 16px;}
.Cust_box {border: 1px solid #a70e1c;padding: 20px 15px;border-radius: 8px; margin-bottom: 20px;}

@media(max-width:768px){
  .blog-card {
    flex-direction:column;
  }
}