.red {
	color: #FF0000;
}

/* Flex utilities */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.text-right {
    text-align: right;
}

/* Margin-left utility used in CTA */
.ml-4 {
    margin-left: 1rem;
}

.ml-0 {
    margin-left: 0;
}/* =========================
   HEADER LAYOUT
   ========================= */

.header-bar {
    border-bottom: 1px solid #e0e0e0;
}

.header-left .site-title {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.phone-text .number {
    font-size: 1.2rem;
}

/* =========================
   NAV
   ========================= */

.nav {
    background-color: #244E63;
    font-size: 0.95rem;
    position: relative;
}

.nav__inner {
    max-width: 1280px;
    min-width: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav__logo {
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 1.05rem;
    color: #FFF;
    display: none; /* shown in RWD */
}

.nav__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
    min-width: 0;
    overflow: visible;
}

.nav__menu > li {
    position: relative;
}

.nav__menu > li > a {
    display: flex;
    align-items: center;
    padding: 0.95rem 1rem;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    margin-right: 5px;
    background-color: transparent;
    transition: background-color 0.15s ease, color 0.15s ease;
    text-decoration: none;
}

.nav__menu > li > a:hover {
    background-color: #C44039;
    color: #fff;
}

.has-dropdown > a::after {
    content: "▾";
    font-size: 0.95rem;
    margin-left: 6px;
    color: #fff;
}

.has-dropdown {
    position: relative;
}

/* First-level dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.15s ease;
    z-index: 30;
}

.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Second-level submenu */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 240px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: 0.15s ease;
    z-index: 40;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Dropdown links */
.dropdown a,
.submenu a {
    display: block;
    padding: 0.4rem 1rem;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.dropdown a:hover,
.submenu a:hover {
    background: #71a8da;
    color: #FF0;
}

.dropdown-heading {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 28px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
}

/* =========================
   HERO
   ========================= */

.hero-section {
/*    background-image: url("../Assets/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;*/
	position: relative;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
	border-bottom: solid 1px rgb(55, 49, 115);
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.hero-section .grid-2 {
    align-items: center;
}

.hero-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}


/* =========================
   AUTOSUGGEST
   ========================= */

.asb-wrapper {
    --asb-bg: #71a8da; /* or whichever you choose */
    background: var(--asb-bg);
    padding: 2.5rem 0;
}

.asb-band {
    --asb-bg: #71a8da; /* default */
}

.asb-body {
    --asb-bg: #71a8da; /* lighter, breathable */
}

.autosuggest-wrapper {
    width: 100%;
    /*max-width: 600px;*/
    margin: 0 auto;
    padding: 30px;
    position: relative;
    text-align: center;
	border-top: solid 2px #C44039;
	border-bottom: solid 2px #C44039;
}

.autosuggest-wrapper h3 {
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	color:#000; 
	font-size: 36px;
	font-style: italic;
}

/* Input + dropdown container */
.as-group {
    position: relative;
	display: inline-block;
    margin-bottom: 15px;
}

/* Input styling */
.as-input {
    max-width: 300px;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Dropdown menu */
.as-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
	text-align: left;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.as-menu.active {
    display: block;
}

/* Dropdown items */
.as-menu .dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
}

.as-menu .dropdown-item:hover {
    background: #f0f0f0;
	color: #C44039;
	font-weight: 500;
}
.asb-results li {
    background: #F2F2F2;
    color: ##244E63;
    padding: 0.4rem 1rem;
    border-bottom: 4px solid transparent;
}

.asb-results li:hover {
    background: #222;
    color: #F2F2F2;
    font-weight: bold;
    border-bottom: 4px solid #c44039;
}

.asb-btn {
    text-align: center;
    background: #C44039;
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    margin: 15px 0;
    font-size: 14px;
}

.asb-btn:hover {
    background: #003f7d;
	text-decoration: none;
	cursor: pointer;
}

/* =========================
   LOGOS STRIP + CAROUSEL
   ========================= */

.logos-section img,
.logos-track img {
    max-height: 60px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.logos-section img:hover,
.logos-track img:hover {
    opacity: 1;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-carousel {
    overflow: hidden;
    width: 100%;
}

.logos-track {
    display: flex;
    min-width: 200%;
    animation: scroll-logos 22s linear infinite;
}

.logos-track .logo-item {
    flex: 0 0 20%;
    padding: 0 15px;
    box-sizing: border-box;
}

@keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================
   CONTENT SECTION
   ========================= */

.content-section {
    background-color: #ffffff;
}

.content-block {
    position: relative;
    margin-bottom: 1rem;
}

.content-block h2 {
    margin-top: 0;
    margin-bottom: 1rem;
	color: #C44039;
}

.float-image {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    margin: 0 1.5rem 1rem 0;
    float: left;
}

.float-image.right {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.content-block::after {
    content: "";
    display: block;
    clear: both;
}

/* =========================
   SERVICE SECTION
   ========================= */

.service-section {
    padding-top: 125px;
    padding-bottom: 100px;
    background: url("../Assets/section-background.png") center top / cover no-repeat rgb(236, 249, 254);
    border-bottom: 10px solid rgb(196, 64, 57);
}

.section-title {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.service-card img {
    display: block;
    margin: 0 auto 20px auto;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Utilities */
.text-white { color: #ffffff; }
.mb-40 { margin-bottom: 2.5rem; }

/* =========================
   FOOTER
   ========================= */

.footer {
    background-color: #ffffff;
    color: #244E63;
}

.border-short {
    width: 80%;          /* or any value */
    border-top: 2px solid #c44039;
	box-shadow: 0 2px 10px rgba(0,0,0,.25);
    margin: 10px auto 25px auto;      /* center it */
}

.footer-logo {
    font-size: 1.8rem;
    letter-spacing: 0.12em;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-top {
    display: flex;
    align-items: stretch;
    gap: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-top > * {
    flex: 1;
}

.footer-info {
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    padding-right: 2rem;
    margin-right: 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-list {
    list-style: disc;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.35rem;
}

.footer-list a {
    color: #244E63;
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: #244E63;
    text-decoration: underline;
}

.footer-phone-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-phone-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
}

/* =========================
   SECTION MAIN (ALTERNATING BLOCKS)
   ========================= */

/* Section wrapper */
.section-main {
    background-color: rgb(236, 249, 254);
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Section header */
.section-main-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-main h2 {
	color: #C44039;
	font-size: 28px;
}

.section-main-header .main-subtitle {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-main-header .main-title {
    font-size: 2.4rem;
    font-weight: 700;
}

.main-block {
    display: flex;
    /*gap: 30px;*/
	align-items: flex-start; /* top-align image + text */
    margin-bottom: 100px;
}
.main-block > * {
    padding: 0 !important;
}
.main-block:last-child {
    margin-bottom: 0;
}

/* Reverse layout */
.main-block.reverse {
    flex-direction: row-reverse;
}

/* Image column */
.main-image {
    display: inline-flex;
    flex: 0 0 auto;
    margin-right: 30px;
	padding: 0 !important;
	width: auto !important;
    max-width: none !important;
}
.main-image img {
    display: block;
    width: 100%;
    max-width: 500px; /* Adjust as needed */
    height: auto;
    border-radius: 8px;
}
.main-block.reverse .main-image {
    margin-right: 0;
    margin-left: 30px; /* image on the right: 30px to the text */
}
/* Text column */
.main-content {
    flex: 1;
	padding: 0 !important;
}

.main-subtitle {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.main-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.main-content p {
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #C44039;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.main-btn:hover {
    background-color: #a73530;
}

.asbestos-sidebar {
    width: 320px;
    float: right;
    margin: 0 0 20px 30px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #C44039;
	background-color: #FAEBD7;
}

.asbestos-sidebar h2 {
    text-align: center;
    margin: 0 auto 15px auto;
    position: relative;
    padding-bottom: 10px; /* space between text and underline */
}

.asbestos-sidebar h2::after {
    content: "";
    display: block;
    width: 60%;          /* your requested width */
    height: 2px;         /* thickness of the line */
    background-color: #C44039; /* or whatever accent color you want */
    margin: 8px auto 0 auto;   /* centers the line */
    border-radius: 2px;        /* optional: softens the ends */
}

.asbestos-sidebar h2 span {
    color: #C44039;
}

.asbestos-sidebar p {
    font-size: 15px;
    line-height: 1.5;
}

.icon-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.icon-item {
    width: 140px;
    text-align: center;
}

/* NEW: force icons into a perfectly centered grid */
.icon-item figure {
    width: 100%;
    height: 70px; /* or 80px if you want more breathing room */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.icon-item img {
    max-width: 70px;
    max-height: 50px;
    display: block;
}

.icon-item h3 {
    font-size: 14px;
    margin-top: 6px;
}

.sidebar-btn {
    display: block;
    text-align: center;
    background: #C44039;
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    margin: 15px 0;
    font-size: 14px;
}

.sidebar-btn:hover {
    background: #003f7d;
	text-decoration: none;
}

.va-stories h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.story {
    margin-bottom: 20px;
}

.story img {
    width: 100%;
    border-radius: 6px;
}

.story p {
    margin-top: 8px;
    font-size: 14px;
}

.state-list-vertical ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.state-list-vertical li {
    margin: 0 0 8px 0;
}

.state-list-vertical a {
    text-decoration: none;
    color: #003366;
    font-weight: 500;
}

.state-list-vertical a:hover {
    text-decoration: underline;
}

.state-city-band {
    background: #F2F2F2;
    border-bottom: 1px solid #c44039;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    padding: 2rem 0;
    margin: 2rem 0;
    overflow: hidden;
}

.city-scroll {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.city-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.city-list li a {
    display: block;
    padding: 0.4rem 0;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.city-list li a:hover {
    background: #222;
    color: #F2F2F2;
    border-bottom: 1px solid #c44039;
    font-weight: bold;
}

.state-form-section2 {
    background-image: url(../Assets/meeting.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.state-form-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.state-col {
    flex: 1;
}

.form-col {
    flex: 2;
}

.state-scroll {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 12px;
    background: #fafafa;
}

.state-scroll ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.state-scroll li {
    margin-bottom: 6px;
	font-size: 18px;
}

.state-scroll a {
    text-decoration: none;
    color: #333;
}

.state-scroll a:hover {
    color: #c44039;
}

/* FORM */
.form-block {
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    position: relative;
    flex: 1;
}

.form-field.full {
    flex: 100%;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 16px;
    background: none;
}

.form-field label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 18px;
    color: #666;
    transition: 0.2s ease;
    pointer-events: none;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 8px;
    background: #fff;
    padding: 0 4px;
    font-size: 14px;
    color: #c44039;
}

.recognition-carousel {
    overflow: hidden;
    width: 100%;
}

.recognition-track {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    width: max-content;
    animation: recognition-scroll 50s linear infinite;
	will-change: transform;
}

.recognition-item img {
    display: block;
    max-height: 120px;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

@keyframes recognition-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.city-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* left column narrower */
    gap: 40px;
    align-items: start;
    /*margin-top: 30px;*/
}

/* -----------------------------------------
   ICON LIST (STRUCTURAL ONLY)
----------------------------------------- */
ul._iconList {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul._iconList li {
    margin-bottom: 21px; /* You can tune this later */
}

ul._iconList ._listIcon {
    background-color: #fff; /* Override with your palette */
    padding: 15px;
    border-radius: 10px;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
._iconList h5 {
	font-size: 1.75rem;
	color: #FF0000;
	margin-bottom: 8px;
}

ul._iconList p {
    font-size: 18px;
    margin-bottom: 0;
}


/* -----------------------------------------
   WHY-US HEADING OVERRIDE
----------------------------------------- */
._whyUs {
	background-color: #e3d2d2;
	padding: 45px 0;
	border-top: solid 1px #C44039;
	border-bottom: solid 1px #C44039;
}
._whyUs h2 {
	font-size: 2.5rem;
	/*color: #FF0000;*/
}
._whyUs h2::before {
    content: none; /* Removes your global underline */
}

.whyUsimg {
	min-width: 50%;
	max-width: 50%;
}
.WhyUsimg img {
    border: 36px solid #fff;
    border-radius: 100%;
}
.fw500 {
	font-weight: 500;
}

/* -----------------------------------------
   CTA OFFSETS (OPTIONAL)
----------------------------------------- */
._ctaTop {
    margin-bottom: -85px; /* Tune later */
	position: relative !important;
}

._ctaBottom {
    margin-top: -85px; /* Tune later */
}

._ctaBox {
	border-radius: 17px;
    padding: 15px 20px;
	background-color: #C44039;
}
._cta h5 {
	font-size: 24px;
	color: #FFFFFF;
	margin-top: 12px;
	margin-bottom: 5px;
}
._cta p {
	font-size: 18px;
	color: #FFFFFF;
}
.btn-cta {
	background-color: #FFF;
	color: #000;
	border-radius: 999px;
	padding: 8px 15px;
	font-weight: bold;
	font-size: 22px;
}
.btn-cta:hover {
	background-color: #000;
	color: #FFF;
	text-decoration: none;
}
._btnCall {
	color: #FFF;
	font-size: 22px;
}
.call {
	font-size: 18px;
}
._btnCall:hover {
	text-decoration: none;
}
/* MOBILE COLLAPSE */
@media (max-width: 768px) {
    .state-form-block {
        flex-direction: column;
    }
}

/* =========================
   RESPONSIVE BREAKPOINTS
   (Descending max-width)
   ========================= */

/* 1200px */
@media (max-width: 1200px) {
    .nav__inner {
        padding: 0.75rem 1rem;
    }
    .nav__menu {
        gap: 1.25rem;
        font-size: 0.9rem;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 900px — NAV COLLAPSE */
@media (max-width: 900px) {
    .nav__inner {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .nav__toggle {
        display: flex;
    }
    .nav__menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-top: 0.5rem;
        display: none;
    }
    .nav__menu.is-open {
        display: flex;
    }
    .nav__logo {
        display: block;
    }

    /* Mobile dropdown behavior */
    .has-dropdown:hover > .dropdown {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding-left: 0;
    }

    .dropdown {
        padding: 0.25rem 0 0.5rem;
        margin-left: 1rem;
    }
	
	.main-block,
    .main-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .main-image img {
        max-width: 260px;
        margin: 0 auto;
    }
}

/* 768px */
@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .flex-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-info {
        border-right: none;
        padding-right: 0;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    /* Float images collapse */
    .float-image,
    .float-image.right {
        float: none;
        display: block;
        margin: 0 auto 1.5rem auto;
        max-width: 100%;
    }
}

/* 480px */
@media (max-width: 480px) {
    .nav__inner {
        padding: 0.5rem 0.75rem;
    }
    .nav__logo {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }
    .btn-rounded {
        border-radius: 50px;
    }
    .btn {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
	.city-two-col {
        grid-template-columns: 1fr;
    }
}

/* 400px */
@media (max-width: 400px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
	.asbestos-sidebar {
        float: none;
        margin: 0 auto 20px auto; /* centers it */
    }
}