:root {
	--bs-body-font-size:1rem;
	--primary-blue:#4a89dc;
	--nav-navy:#213a55;
	--dark-navy:#121920;
	--text-light:#FFF;
	--accent-burgundy:#d36d1d;
	--accent-burgundy-hover:#b05918;
	--text-highlight:#FFFFFF;
	--bs-navbar-nav-link-padding-x:0.5rem;
	--light-dark:#2c323c;
	--border-dark:#343a40;
	--medium-dark:#232830;
	--dark-bg:#1a1e23;
	--text-muted:#adb5bd;
}
body {
	font-family: 'Georgia', serif;
}
header {
	width:100%;
	background: var(--nav-navy);
	top: 0;
  	z-index: 1000;
  	transition: all 0.3s ease;
  	position: fixed;
  	box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 10px;
}
.wrapper {
	margin: 0 auto;
	max-width: 1320px;
	width: 100%;
}
.v-align-center {
	display: flex;
	align-items:center;
}
.header-left {
	padding-top: 10px;
	padding-bottom: 10px;
}
.header-logo-mobile {
	display: none;
}
.header-slogan {

}
.header-slogan a {
	color: var(--primary-blue);
	text-decoration: none;
	margin: 0;
  	line-height: 1.2;
  	font-size: 1.5rem;
  	font-weight: 700;
}
.header-phone p {
	margin-bottom: 0;
	margin-top: 5px;
	color: var(--text-light);
  	font-size: 1.1rem;
}
.header-phone p a {
	color: var(--text-light);
  	text-decoration: none;
  	transition: color 0.3s ease;
  	margin-right: 5px;
}
.header-phone p a:last-of-type {
	margin-left: 5px;
}
.header-phone p a:hover {
	color: var(--accent-burgundy);
}
.header-right-container {
	justify-content: end;
	display: flex;
	align-items:center;
}
.header-contact-button {
	padding-left: 10px;
	width:125px;
}
.header-contact-button a, .content-format a.client-intake-button {
	background-color: var(--accent-burgundy);
	color: var(--text-highlight);
	border: none;
	padding: 10px 25px;
	border-radius: 3px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;

	display: inline-block;
}
.header-contact-button a:hover, .content-format a.client-intake-button:hover {
	background-color: var(--accent-burgundy-hover);
  	color: var(--text-highlight);
  	transform: translateY(-2px);
}
.header-right {
	display: flex;
	align-items: center;
	width: 100%;
}
.header-nav {
	font-family: 'Georgia', serif;
	width: calc(100% - 145px);
	padding-right: 20px;
	display: flex;
	justify-content: right;
}
.header-nav > ul {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	justify-content: right;
}
.header-nav ul li {
	list-style: none;
	position: relative;
}
.header-nav ul li a {
	transition: all 0.3s ease;
  	position: relative;
  	padding: 0.5rem 1.2rem;
  	color: var(--text-light);
  	font-weight: 500;
  	padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
    text-decoration: none;
    font-family: 'Georgia', serif;
}
.header-nav ul li a:hover {
	color: var(--accent-burgundy);
}
.header-nav .megaMenuDropDown {
	display: none;
	position: absolute;
	background-color: var(--light-dark);
	min-width: 800px;
	border: 1px solid var(--border-dark);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	padding: 20px;
	left: -500px;
	top: 100%;
	border-radius: 8px;
}
.header-nav > ul > li:hover > .megaMenuDropDown {
	display: block;
}
.header-nav .megaMenuDropDown ul {
	padding:0;
}
.header-nav .megaMenuDropDown ul li:before {
	content: "\f0da";
	font: var(--fa-font-solid);
	font-size: 0.8rem;
	color: var(--text-light);
	transition: all 0.3s ease;

	display: inline-block;
  	text-rendering: auto;
  	-webkit-font-smoothing: antialiased;
}
.header-nav .megaMenuDropDown ul li {
	color: var(--text-light);
	text-decoration: none;
	display: block;
	padding: 8px 10px;
	transition: all 0.3s ease;
	border-radius: 4px;
	font-size: 0.9rem;
}
.header-nav .megaMenuDropDown ul li a {
	color: var(--text-light);
}
.header-nav .megaMenuDropDown ul li:hover {
	transform: translateX(5px);
	color: var(--accent-burgundy);
}
.header-nav .megaMenuDropDown ul li:hover:before {
	color: var(--accent-burgundy);
}
.header-nav .megaMenuDropDown ul li a:hover {
	color: var(--accent-burgundy);
}
.hamburger-menu {
  	margin-left: auto;
  	display: none;
  	position: relative;
}
.hamburger-menu button {
	background: var(--accent-burgundy);
	color: var(--text-light);
	border: none;
	cursor: pointer;
	height: 40px;
	width: 40px;
	border-radius: 3px;
}
.hamburger-menu button:hover {
	background: var(--accent-burgundy-hover);
	transform: translateY(-2px);
}
/* Force hide hamburger on desktop - CSS override for reliability */
@media screen and (min-width: 1200px) {
	.hamburger-menu {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}
	.header-nav > ul > li {
		display: list-item !important;
	}
}
.hamburger-dropdown {
  	position: absolute;
  	margin-top: 30px;
  	right: 0;
}
.hamburger-dropdown > ul {
	position: absolute;
	top: 100%;
	right: 0;
	background: #0F0F0F;
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 500px;
}
.hamburger-dropdown.active > ul {
	display: block;
}
.hamburger-dropdown ul li a {
	display: block;
	padding: 10px;
	color: #fff;
	text-decoration: none;
}
.hamburger-extra-links {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid #333;
}
.hamburger-dropdown ul li.has-dropdown:hover > .megaMenuDropDown {
	display: block;
}
.hamburger-dropdown .megaMenuDropDown {
	position: relative;
	top: 0;
	left: 0;
	min-width: inherit;
	padding: 0;
	border:none;
	border-radius:none;
	background: none;
}
.hamburger-dropdown .megaMenuDropDown ul {
	display: block;
	position: relative;
	top: 0;
	left: 0;
}
.hamburger-dropdown .megaMenuDropDown ul li::before {
	display: none;
}
.hamburger-dropdown .megaMenuDropDown ul li a {
	padding-top: 10px;
	padding-bottom: 10px;
}
.hamburger-dropdown .megaMenuDropDown .col-sm-3 {
	width:50%;
}
.hero-section {
	background: linear-gradient(135deg, var(--nav-navy) 0%, var(--dark-navy) 100%);
	padding: 140px 0 80px;
	position: relative;
	overflow: hidden;
}
/* Clean Card Layout for Attorney Bio */
.hero-card-layout .attorney-card {
	background: var(--light-dark);
	border-radius: 8px;
	padding: 8px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-dark);
}
.hero-card-layout .attorney-photo {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}
.hero-card-layout .attorney-name {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--text-highlight);
	margin-bottom: 10px;
	font-family: 'Georgia', serif;
}
.hero-card-layout .attorney-title-row {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}
.hero-card-layout .certified-seal {
	width: 70px;
	height: auto;
}
.hero-card-layout .attorney-title {
	font-size: 1.3rem;
	color: var(--primary-blue);
	margin-bottom: 0;
	font-weight: 600;
}
.hero-card-layout .attorney-tagline {
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 25px;
}
.hero-card-layout .attorney-contact {
	margin-bottom: 10px;
}
.hero-card-layout .attorney-contact p {
	color: var(--text-light);
	margin-bottom: 8px;
	font-size: 1rem;
}
.hero-card-layout .attorney-contact i {
	color: var(--accent-burgundy);
	margin-right: 10px;
	width: 20px;
}
.hero-card-layout .attorney-contact a {
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}
.hero-card-layout .attorney-contact a:hover {
	color: var(--accent-burgundy);
}

/* Practice Areas Links Grid */
.practice-areas-links {
	background: var(--medium-dark);
	padding: 60px 0;
}
.practice-areas-links .section-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 30px;
}
.practice-areas-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
}
.practice-area-tag {
	display: inline-block;
	padding: 10px 20px;
	background: var(--light-dark);
	color: var(--text-light);
	text-decoration: none;
	border-radius: 25px;
	font-size: 0.95rem;
	font-weight: 500;
	border: 1px solid var(--border-dark);
	transition: all 0.3s ease;
}
.practice-area-tag:hover {
	background: var(--accent-burgundy);
	border-color: var(--accent-burgundy);
	color: var(--text-highlight);
	transform: translateY(-2px);
}
.btn-view-all {
	display: inline-block;
	padding: 12px 30px;
	background: transparent;
	color: var(--primary-blue);
	text-decoration: none;
	border: 2px solid var(--primary-blue);
	border-radius: 5px;
	font-weight: 600;
	margin-top: 20px;
	transition: all 0.3s ease;
}
.btn-view-all:hover {
	background: var(--primary-blue);
	color: var(--text-highlight);
}
/* END Practice Areas Links Grid */

.hero-logo {
	padding-bottom: 30px;
}
.hero-section-content {

}
.hero-section-content h1 {
	color: var(--text-highlight);
	margin-bottom: 20px;
	line-height: 1.2;
	font-size: 2.8rem;
	font-family: 'Arial', sans-serif;
  	font-weight: 700;
  	margin-bottom:20px;
}
.hero-section-content h2 {
	font-size: 2.5rem;
	color: var(--primary-blue);
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
	font-family: 'Arial', sans-serif;
  	font-weight: 700;
}
.hero-section-content h2:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--accent-burgundy);
}
.hero-section-content p a {
	color: var(--accent-burgundy);
}
.hero-buttons em {
	background: rgba(74, 137, 220, 0.2);
	color: var(--primary-blue);
	padding: 10px 20px;
	border-radius: 25px;
	display: inline-block;
	margin-top: 20px;
	font-size: 14px;
	font-style: normal;
}
h2.section-title {
	font-size: 2.5rem;
	color: var(--primary-blue);
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 15px;
	font-family: 'Arial', sans-serif;
  	font-weight: 700;
  	display: inline-block;
}
h2.section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--accent-burgundy);
}
.hero-section-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text-light);
  	margin-bottom: 30px;
  	font-weight: 400;
  	font-family: 'Georgia', serif;
}
.btn-hero-primary {
	background-color: var(--accent-burgundy);
	color: var(--text-highlight);
	border: none;
	display: inline-block;
	text-decoration: none;

	padding: 15px 40px;
	font-size: 1.1rem;
	border-radius: 3px;
	font-weight: 600;
	transition: all 0.3s ease;
}
.btn-hero-primary:hover {
	background-color: var(--accent-burgundy-hover);
	color: var(--text-highlight);
	transform: translateY(-2px);
}
.btn-hero-secondary {
	background-color: transparent;
	color: var(--text-highlight);
	border: 2px solid var(--text-light);
	margin-left: 20px;
	display: inline-block;
	text-decoration: none;

	padding: 15px 40px;
	font-size: 1.1rem;
	border-radius: 3px;
	font-weight: 600;
	transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--text-highlight);
	border-color: var(--text-highlight);
	transform: translateY(-2px);
}
.hero-right img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 2;
	border: 1px solid var(--border-dark);
}
.about-section {
	padding: 80px 0;
  	background-color: var(--medium-dark);
}
.practice-areas {
	padding: 80px 0;
  	background-color: var(--dark-bg);
}
.service-card {
	background-color: var(--light-dark);
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	border: 1px solid var(--border-dark);
	height: 100%;
}
.service-card.education-card {
	height: auto;
}
.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border-color: var(--accent-burgundy);
}
.service-icon {
  	font-size: 2.5rem;
  	color: var(--accent-burgundy);
  	margin-bottom: 20px;
}
.service-title {
	font-size: 1.5rem;
	color: var(--primary-blue);
	margin-bottom: 15px;
}
.service-card .meta-date {
	color: var(--text-muted);
  	font-size: 0.9rem;
  	margin-bottom: 15px;
}
.service-card p {
	color: var(--text-light);
  	line-height: 1.6;
}
.stats {
	background-color: #1a2438;
	padding: 60px 0;
	color: var(--text-light);
}
.stat-item {
  	text-align: center;
  	padding: 20px;
}
.stat-number {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-highlight);
}
.stat-label {
  	font-size: 1.1rem;
  	color: var(--text-light);
}
.testimonial {
  	padding: 80px 0;
  	background-color: var(--dark-bg);
}
.testimonial-card {
	background-color: var(--light-dark);
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	margin-bottom: 30px;
	position: relative;
	border: 1px solid var(--border-dark);
}
.quote-icon {
	position: absolute;
	top: 20px;
	left: 30px;
	font-size: 3rem;
	color: rgba(211, 109, 29, 0.1);
}
.testimonial-rating {
  	color: #ffc107;
  	margin-bottom: 10px;
}
.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-light);
	margin-bottom: 20px;
	font-style: italic;
}
.testimonial-author {
  	font-weight: 600;
  	color: var(--primary-blue);
}
.review-source-badge {
	margin-bottom: 15px;
}
.review-source-badge img {
	opacity: 0.8;
}
.review-title {
	font-size: 1.1rem;
	color: var(--primary-blue);
	margin-bottom: 12px;
	font-family: 'Arial', sans-serif;
	font-weight: 700;
}
.btn-view-all-reviews {
	color: var(--accent-burgundy);
	font-weight: 600;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.3s ease;
}
.btn-view-all-reviews:hover {
	color: var(--accent-burgundy-hover);
	text-decoration: underline;
}
/* Why Choose Section */
.why-choose {
	padding: 80px 0;
	background-color: var(--dark-bg);
}
.why-choose-card {
	background-color: var(--light-dark);
	border-radius: 8px;
	padding: 30px;
	height: 100%;
	border: 1px solid var(--border-dark);
	transition: all 0.3s ease;
	text-align: center;
}
.why-choose-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border-color: var(--accent-burgundy);
}
.why-choose-icon {
	font-size: 2.5rem;
	color: var(--accent-burgundy);
	margin-bottom: 20px;
}
.why-choose-card h3 {
	font-size: 1.2rem;
	color: var(--primary-blue);
	margin-bottom: 15px;
	font-family: 'Arial', sans-serif;
	font-weight: 700;
}
.why-choose-card p {
	color: var(--text-light);
	line-height: 1.6;
	font-size: 0.95rem;
	margin-bottom: 0;
}
/* Peer Recognition Section */
.peer-recognition {
	padding: 80px 0;
	background-color: #1a2438;
}
.endorsement-card {
	background-color: var(--light-dark);
	border-radius: 8px;
	padding: 30px;
	height: 100%;
	border: 1px solid var(--border-dark);
	position: relative;
}
.endorsement-card .quote-icon {
	position: static;
	font-size: 1.5rem;
	color: var(--accent-burgundy);
	margin-bottom: 10px;
}
.endorsement-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text-light);
	font-style: italic;
	margin-bottom: 15px;
}
.endorsement-author {
	font-weight: 600;
	color: var(--primary-blue);
	margin-bottom: 2px;
	font-size: 0.95rem;
}
.endorsement-relation {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin-bottom: 0;
}
.free-consultation {
	padding: 80px 0;
  	background-color: var(--medium-dark);
}
.tagline {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 30px;
}
.contact-form {
	background-color: var(--light-dark);
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--border-dark);
}
.contact-form-container {
	background-color: var(--light-dark);
	padding: 40px;
	border-radius: 8px;
	border: 1px solid var(--border-dark);
}
.contact-form .form-label {
	color: var(--text-light);
}
.contact-form .form-label em {
	color: #F00;
}
.contact-form button {
	background-color: var(--accent-burgundy);
	color: var(--text-highlight);
	border: none;
	padding: 10px 25px;
	border-radius: 3px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-family: 'Georgia', serif;
}
.contact-form button:hover {
	background-color: var(--accent-burgundy-hover);
	color: var(--text-highlight);
	transform: translateY(-2px);
}
label.error {
	font-size: 14px;
	color: #F00;
}
.contact-form .form-select,
.formcontainer .form-select {
	color: var(--text-light);
	background-color: var(--dark-bg);
	border: 2px solid var(--border-dark);
}
.contact-form .form-control,
.formcontainer .form-control {
	color: var(--text-light);
	background-color: var(--dark-bg);
	border: 2px solid var(--border-dark);
}
.contact-form .form-control::placeholder,
.formcontainer .form-control::placeholder,
.formcontainer input::placeholder,
.formcontainer textarea::placeholder {
	color: #999 !important;
	opacity: 1 !important;
}
.formcontainer .form-label {
	color: var(--text-light);
	font-weight: bold;
}
.formcontainer .form-label em {
	color: #f5a623;
	font-style: normal;
}
.contact-info {
  	padding: 10px 40px 40px;
}
.contact-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}
.contact-info-icon {
	font-size: 1.5rem;
	color: var(--accent-burgundy);
	margin-right: 20px;
	width: 30px;
	text-align: center;
}
.contact-info-text h4 {
  	color: var(--primary-blue);
  	margin-bottom: 5px;
  	font-family: 'Arial', sans-serif;
  	font-weight: 700;
  	font-size: 1.5rem;
}
.contact-info-text p {
	font-family: 'Georgia', serif;
	color: var(--text-light);
	font-size: 16px;
}
.contact-info-text p a {
	text-decoration: none;
	color: var(--text-light);
}
.contact-info-text p a:hover {
	text-decoration: underline;
}
footer {
  	background-color: var(--nav-navy);
  	color: var(--text-light);
  	padding: 60px 0 30px;
}
.footer-title {
	color: var(--text-highlight);
	font-size: 1.3rem;
	margin-bottom: 20px;
	font-weight: 600;
	font-family: 'Arial', sans-serif;
	line-height: 1.2;
}
.footer-widget .description {
	font-family: 'Georgia', serif;
}
.contact-info-footer p {
  	margin-bottom: 10px;
  	color: var(--text-muted);
  	font-family: 'Georgia', serif;
}
.contact-info-footer a {
  	color: var(--text-light);
  	text-decoration: none;
}
.contact-info-footer a:hover {
	text-decoration: underline;
}
.footer-widget ul {
	padding-left:20px;
}
.footer-widget ul li {
	list-style: none;

}
.footer-widget ul li a {
	color: var(--text-muted);
	text-decoration: none;
	transition: all 0.3s ease;
	display: block;
	margin-bottom: 10px;
	font-family: 'Georgia', serif;
}
.footer-widget ul li a:hover {
	color: var(--text-light);
	padding-left: 5px;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 40px;
	padding-top: 30px;
	text-align: center;
	color: var(--text-muted);
	font-family: 'Georgia', serif;
	text-align: center;
}
.footer-bottom a {
	color: var(--text-muted);
	text-decoration: none;
}
.footer-bottom a:hover {
	text-decoration: underline;
}
.main-content {
  	padding: 20px 0 80px;
  	background-color: var(--medium-dark);
}
.featured-image-section .wrapper,
.default-single-main-content .wrapper {
	max-width: 940px;
}
.faqs-container .accordion-item {
	background: var(--light-dark);
	border-color: var(--border-dark);
	margin-bottom: 8px;
	border-radius: 6px !important;
	overflow: hidden;
}
.faqs-container .accordion {
	--bs-accordion-bg: var(--light-dark);
}
.faqs-container .accordion-button {
	font-size: 1.1rem;
  	font-weight: 600;
  	color: var(--text-light);
	padding: 18px 20px;
}
.faqs-container .accordion-button:not(.collapsed) {
	background: rgba(74, 137, 220, 0.1);
	color: var(--primary-blue);
}
.faqs-container .accordion-body {
	font-size: var(--bs-body-font-size);
	font-weight: normal;
	color: var(--text-light);
	line-height: 1.7;
	font-family: 'Georgia', serif;
	padding: 12px 20px 20px;
}
/* Use Bootstrap's native accordion chevron icons - styled burgundy */
.faqs-container .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B4545'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	content: "";
}
.faqs-container .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a89dc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faqs-container .accordion-button:focus {
	box-shadow: 0 0 0 0.25rem rgba(139, 69, 69, 0.25);
}
.faqs-container i, .faqs-container em {
	background: var(--dark-bg);
	padding: 15px;
	border-radius: 6px;
	margin-top: 15px;
	font-size: 0.9rem;
	color: var(--text-muted);
	border-left: 3px solid var(--accent-burgundy);
	font-style: normal;
	display: block;
}
.contact-cta {
  	background: linear-gradient(135deg, var(--nav-navy) 0%, var(--dark-navy) 100%);
  	color: var(--text-light);
  	padding: 80px 0;
  	text-align: center;
}
.contact-cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: 700;
	color: var(--text-highlight);
	text-align: center;
}
.contact-cta-content p {
	text-align:center;
}
.contact-cta-content p a {
	display: inline-block;
	background: var(--accent-burgundy);
	color: var(--text-highlight);
	padding: 15px 40px;
	border-radius: 3px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}
.contact-cta-content p a:hover {
	background-color: var(--accent-burgundy-hover);
	color: var(--text-highlight);
	transform: translateY(-2px);
	text-decoration: none;
}
.contact-item {
	background: rgba(255, 255, 255, 0.05);
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--border-dark);
}
.contact-item h4 {
	margin-bottom: 10px;
	font-size: 1.1rem;
	color: var(--primary-blue);
}
.contact-item p {
  	color: var(--text-light);
 	margin: 0;
}
.contact-item a {
	color: var(--text-light);
	text-decoration: none;
}
.contact-item a:hover {
	text-decoration: underline;
}
.blog-card {
	background-color: var(--light-dark);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid var(--border-dark);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.blog-card:hover {
  	transform: translateY(-5px);
  	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  	border-color: var(--accent-burgundy);
}
.blog-image {
	width: 100%;
	height: 200px;
	position: relative;
	overflow: hidden;
	background-color: var(--medium-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}
.blog-card:hover .blog-image img {
  	transform: scale(1.05);
}
.blog-content {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.blog-title {
	font-size: 1.4rem;
	color: var(--text-highlight);
	margin-bottom: 15px;
	line-height: 1.3;
}
.blog-title a {
	color: var(--text-highlight);
	text-decoration: none;
	transition: color 0.3s ease;
}
.blog-excerpt {
	color: var(--text-light);
	margin-bottom: 20px;
	flex-grow: 1;
	line-height: 1.6;
}
.blog-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid var(--border-dark);
	margin-top: auto;
}
.blog-date {
  	color: var(--text-muted);
  	font-size: 0.9rem;
}
.blog-read-more {
	color: var(--accent-burgundy);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}
.blog-read-more:hover::after {
  	transform: translateX(5px);
  	display: inline-block;
}
.blog-read-more::after {
  	content: ' →';
  	transition: transform 0.3s ease;
}
.blog-read-more:hover::after {
  	transform: translateX(5px);
  	display: inline-block;
}
.blog-pagination .pagination, .blog-pagination .pagination .page-item:last-child .page-link {
	--bs-pagination-bg:rgba(255, 255, 255, 0.05);
	--bs-pagination-disabled-bg:rgba(255, 255, 255, 0.05);
	--bs-pagination-border-color:rgba(255, 255, 255, 0.05);
	--bs-pagination-color:var(--text-light);
	--bs-pagination-disabled-color:var(--text-light);
	--bs-pagination-active-bg:var(--accent-burgundy);
	--bs-pagination-hover-bg:rgba(255, 255, 255, 0.1);
	--bs-pagination-border-width:0;
	--bs-pagination-hover-color:var(--text-light);
}
.featured-post {
	background-color: var(--light-dark);
	border-radius: 8px;
	padding: 40px;
	margin-bottom: 50px;
	border: 2px solid var(--accent-burgundy);
	position: relative;
}
.featured-badge {
	position: absolute;
	top: -15px;
	left: 40px;
	background: var(--accent-burgundy);
	color: var(--text-highlight);
	padding: 8px 20px;
	border-radius: 15px;
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}
.featured-post .blog-image {
	height: 350px;
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
	background-color: var(--medium-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}
.featured-post .blog-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.featured-post h3 {
	color: var(--primary-blue);
	margin-bottom: 15px;
	font-size: 1.8rem;
}
.featured-post p {
  	color: var(--text-light);
	margin-bottom: 20px;
  	font-size: 1.1rem;
}
.article-meta-container {
	display: flex;
}
.article-date {
	color: var(--text-muted);
	padding-right: 20px;
}
.article-author {
	color: var(--text-muted);
	padding-right: 20px;
}
.article-comments {
	color: var(--text-muted);
}
.blog-single-main-content {
	padding-top: 120px;
}
.client-reviews-content {
	padding-top: 100px;
}
.blog-single-main-content h1 {
	color: var(--text-light);
	font-family: 'Georgia',serif;
}
.content-format h1, .content-format h2, .content-format h3, .content-format h4, .content-format h5, .content-format h6 {
	color: var(--text-light);
	font-family: 'Georgia',serif;
}
.content-format h2 {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.content-format h2:first-child,
.content-format h1 + h2 {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}
.content-format h3 {
	margin-top: 30px;
}
.content-format {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-light);
	font-weight: 400;
	font-family: 'Georgia',serif;
	padding: 0 60px;
}
.content-format p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text-light);
	margin-bottom: 30px;
	font-weight: 400;
	font-family: 'Georgia',serif;
}
.content-format ul, .content-format ol {
	margin-bottom: 20px;
}
.content-format ul li, .content-format ol li {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-light);
	font-weight: 400;
	font-family: 'Georgia',serif;
	margin-bottom: 6px;
}
.content-format a {
	color: var(--accent-burgundy);
	text-decoration: underline;
}
.content-format a:hover {
	color: var(--accent-burgundy-hover);
}
.board-certification h4 {
	color: var(--primary-blue);
  	margin-top: 30px;
  	font-family: 'Arial', sans-serif;
  	font-weight: 700;
  	font-size: 24px;
}
.board-certification li::before {
	content: "›";
	font-family: inherit;
	font-weight: 700;
	font-size: 1.4rem;
	position: absolute;
	left: 0;
	color: var(--accent-burgundy);
}
.board-certification ul {
	padding-left: 0;
}
.board-certification li {
	padding: 10px 0;
	padding-left: 0px;
	border-bottom: 1px solid var(--border-dark);
	position: relative;
	padding-left: 30px;
	font-family: 'Georgia', serif;
	list-style: none;
	line-height: 1.6;
	font-size: 16px;
}
.membership-list ul {
	columns: 2;
	column-gap: 40px;
	list-style: none;
	padding: 0;
}
.membership-list ul li::before {
	content: "▪";
	font-family: inherit;
	font-weight: 400;
	position: absolute;
	left: 0;
	color: var(--primary-blue);
	font-size: 1rem;
}
.membership-list ul li {
	break-inside: avoid;
	padding: 8px 0;
	padding-left: 0px;
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
	font-size: 16px;
}
.blog-sidebar-search {
	padding: 30px;
	background: var(--primary-blue);
	border-radius: 8px;
}
.blog-sidebar-search h3 {
	color: #FFF;
	font-weight: 700;
	font-size: 20px;
	padding-bottom: 10px;
}
.blog-search-box {
  	position: relative;
}
.blog-search-box input[type="text"] {
	background: #FFF;
	height: 50px;
	line-height: 50px;
	border: none;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	color: #000;
	font-weight: 700;
}
.blog-search-box button {
	border: none;
	background: none;
	position: absolute;
	right: 10px;
	top:8px;
	font-size: 24px;
	color: var(--text-muted);
}
.blog-sidebar-widget {
	background: var(--nav-navy);
	padding: 40px;
	margin-bottom: 50px;
	margin-top: 50px;
	border-radius: 8px;
}
.blog-sidebar-widget h3 {
	font-weight: 700;
	font-size: 18px;
	color: var(--text-light);
	text-decoration: underline;
}
.blog-sidebar-widget ul {
  	padding: 0;
  	margin: 0;
}
.blog-sidebar-widget ul li {
  	list-style: none;
  	margin: 0;
  	padding: 10px 0;
}
.blog-sidebar-widget ul li a {
	color: var(--text-light);
}
.blog-sidebar-widget ul li a:hover {
	color: var(--accent-burgundy);
}
.blog-sidebar-widget ul li .blog-post-date {
  	font-size: 14px;
  	font-style: italic;
  	color: var(--text-muted);
}
.blog-sidebar-widget p {
  	line-height: 28px;
  	color: var(--text-light);
}
.blog-sidebar-img {
  	padding-bottom: 20px;
  	text-align: center;
}
.blog-sidebar-img img {
  	max-width: 100%;
  	height: auto;
}
.blog-sidebar-contact h3 {
	color: var(--text-light);
	font-size: 30px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
}
.blog-sidebar-contact h4 {
	color: var(--text-light);
	font-size: 20px;
	text-align: center;
	padding-bottom: 20px;
}
.blog-sidebar-contact {
	text-align: center;
}
.blog-sidebar-contact a {
	background-color: var(--accent-burgundy);
	color: var(--text-highlight);
	border: none;
	padding: 10px 25px;
	border-radius: 3px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}
.blog-sidebar-contact a:hover {
  	background-color: var(--accent-burgundy-hover);
  	color: var(--text-highlight);
  	transform: translateY(-2px);
}
.breadcrumb {
	padding: 0;
	margin: 10px 0 20px 0;
}
.breadcrumb li {
	color:var(--accent-burgundy);
	padding-right: 5px;
}
.breadcrumb li a {
	text-decoration: underline;
	color:var(--accent-burgundy);
}
.breadcrumb li a:hover {
	color: var(--accent-burgundy-hover);
}
.breadcrumb li a:after {
	content: "»"; /* Correct character for the arrow */
	margin: 0 0.5em;
	color: var(--text-muted);
	display: inline-block;
}
.article-featured-image {
	padding-bottom: 20px;
}
.article-featured-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}
.default-single-main-content {
	padding-top: 20px;
}
.featured-image-section {
	background: linear-gradient(180deg, #2a4a6b 0%, var(--nav-navy) 25%, #1a2a3d 50%, var(--dark-navy) 75%, var(--medium-dark) 100%);
	padding: 80px 0 40px;
}
.page-featured-image {
	position:relative;
	margin-left: calc(-0.5 * var(--bs-gutter-x));
	margin-right: calc(-0.5 * var(--bs-gutter-x));
}
.page-featured-image img {
	max-width: 100%;
	width: auto;
	height: auto;
	display: block;
	margin: 0 auto;
}
.endorsement {
	padding-bottom: 10px;
}
.endorsement .thumb {
  	max-width: 112px;
  	height: auto;
  	border-radius: 8px;
}
.endorsement .e-author {
	color:var(--text-muted);
}
.endorsement p {
	margin-bottom: 15px;
  	line-height: 24px;
}
.g-img img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}
.g-recent-case {
	background: var(--nav-navy);
	border-radius: 8px;
	overflow: hidden;
	padding: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
	/*display: none;*/
}
.g-recent-case-tag {
	color: var(--text-muted);
	font-size: 12px;
	line-height: 16px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.g-recent-case-title {
	font-size: 18px;
	line-height: 1.3333333333333333em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--accent-burgundy);
	padding-top: 10px;
	text-decoration: underline;
}
.g-recent-case-content {
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.4285714285714286em;
	max-height: 4.285714285714286em;
	overflow: hidden;
	-webkit-line-clamp: 3;
	text-decoration: underline;
}
.g-ago {
	color: var(--text-muted);
	font-size: 12px;
	margin-top: 7px;
	text-decoration: underline;
}
.recent-cases-sidebar {
	max-width:410px;
	margin: 0 auto;
}
.recent-cases-sidebar a {
	background-color: var(--accent-burgundy);
	color: var(--text-highlight);
	border: none;
	padding: 10px 25px;
	border-radius: 3px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
	margin:10px auto;
	text-align: center;
}
.recent-cases-sidebar a:hover, .recent-cases-sidebar a.active {
	color: var(--text-light);
	background-color: var(--accent-burgundy-hover);
}
.g-recent-case-container {
	width:100%;
}
.btn-sort {
	display: none; /* Hidden - restore if filtering needed */
	border:none;
	background: #FFF;
	color: #000;
	padding-bottom: 0;
	transition: all 0.5s;
	box-shadow: 0 0 2px #444;
	margin-left: 5px;
	margin-right: 5px;
	width: 48px;
	height: 48px;
}
.btn-sort:hover {
	background: var(--text-muted);
	transform: translateY(-2px);
}
.btn-sort.active {
  	background-color: var(--accent-burgundy);
	color: var(--text-highlight);
}
.btn-sort.active:hover {
	background-color: var(--accent-burgundy-hover);
  	color: var(--text-highlight);
  	transform: translateY(-2px);
}
.filter-label {
	display: none; /* Hidden - restore if filtering needed */
}
.filter-label img {
	max-width: 80%;
	width: 85px;
	height: auto;
	vertical-align: middle;
	margin-left: 6px;
}
.review-source-image {
  	width: 85px;
  	height: auto;
}
.review-item {
  	padding-top: 20px;
}
.star-rating {
  	font-size: 12px;
  	color: gray;
}
.star-rating .fa-star.checked {
  	color: #ED9C4C;
}
.btn-filter {
	display: none; /* Hidden - restore if filtering needed */
	background-color: var(--accent-burgundy);
	color: var(--text-highlight);
	border: none;
	padding: 10px 25px;
	border-radius: 3px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}
.btn-filter:hover {
	background-color: var(--accent-burgundy-hover);
  	color: var(--text-highlight);
  	transform: translateY(-2px);
}
.recent-cases {
  	display: flex;
  	flex-wrap: wrap;
}
.recent-case {
	width: calc(33.33% - 1px);
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #cbcbcb;
	border-left: 1px solid #cbcbcb;	
    border-left-color: rgb(203, 203, 203);
}
.recent-cases .recent-case:nth-child(3n+1) {
  	border-left-color: transparent;
}
.recent-case-title {
  	padding-top: 10px;
  	font-weight: 700;
  	color: var(--accent-burgundy);
}
.recent-case-charges-title {
  	font-weight: 700;
  	margin-top: 10px;
  	color: var(--text-muted);
}
.recent-case-result-title {
  	font-weight: 700;
  	margin-top: 10px;
  	color: var(--text-muted);
}
.accordion-title {
	padding: 15px;
	color: #FFF;
	cursor: pointer;
	width: 100%;
	background: var(--accent-burgundy);
	font-size: 16px;
	border-bottom: 2px solid #FFF;
	position: relative;
	transition: all 0.5s;
}
.accordion-title i {
  	position: absolute;
  	top: 15px;
  	right: 10px;
}
.accordion .accordion-title i.fa-plus {
  	display: block;
}
.accordion.opened .accordion-title i.fa-plus {
  	display: none;
}
.accordion-content {
  	padding: 10px;
  	display: none;
}
.content-format .accordion-content p {
	margin-bottom: 10px;
}
.sidebar-review {
	text-align: left;
	padding-left: 30px;
	padding-top: 45px;
}
.sidebar-review-author {
  	text-align: right;
}
.about-graphic-content {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	display: block;
  	text-align: left;
  	padding-left: 30px;
  	padding-right: 30px;
}
.about-gasner-title h2 {
  	font-family: "Arial Narrow",Arial,sans-serif;
  	font-size: 50px;
  	padding-top: 10px;
  	font-weight: 300;
}
.about-gasner-title h3 {
  	font-family: "Arial Narrow",Arial,sans-serif;
  	font-size: 26px;
  	font-weight: 300;
}
.about-gasner-contact {
  	padding-top: 25px;
}
.about-gasner-contact p {
  	font-size: 16px;
  	font-weight: 300;
}
.about-gasner-contact p a {
  	color: #000;
  	text-decoration: none;
}
.about-gasner-contact p a.telephone {
  	color: var(--accent-burgundy);
  	text-decoration: none;
}
.about-gasner-contact p a.telephone:hover {
	color: var(--accent-burgundy-hover);
}
.about-gasner-links {
	color: #000;
	font-size: 18px;
	font-family: "Arial Narrow",Arial,sans-serif;
	font-weight: 700;
	width: 100%;
	position: absolute;
	bottom: 10px;
	text-align: left;
	left: 0;
	padding-left: 30px;
	padding-right: 30px;
}
.about-gasner-links ul {
  	padding: 0;
  	width: 490px;
}
.about-gasner-links ul li {
  	display: inline;
}
.about-gasner-links ul li a {
  	color: var(--accent-burgundy);
  	font-size: 15px;
  	text-decoration: none;
}
.about-gasner-links ul li a:hover {
	text-decoration: underline;
	color: var(--accent-burgundy-hover);
}
.about-gasner-links ul li + li::before {
  	content: ", ";
}
@media screen and (max-width: 1120px) {
	.about-gasner-contact {
		padding-top: 5px;
	}
}
@media screen and (max-width: 1100px) {
	.header-slogan a {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 1040px) {
	.about-gasner-title h2 {
		font-size: 36px;
		margin-bottom: 0;
	}
}
@media screen and (max-width: 1030px) {
	.header-slogan a {
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 960px) {
	.header-slogan a {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 960px) {
	.header-slogan a {
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 900px) {
	.about-gasner-title h2 {
		font-size: 28px;
	}
	.about-gasner-title h3 {
		font-size: 20px;
		margin-bottom: 0;
	}
	.about-gasner-links {
		bottom: 0;
	}
}
@media screen and (max-width: 890px) {
	.header-phone p {
		font-size: 0.8rem;
	}
	.about-gasner-links ul {
		margin-bottom: 5px;
	}
	.about-gasner-contact {
		padding-top: 0;
	}
	.about-gasner-title h2 {
		padding-top: 5px;
	}
}
@media screen and (max-width: 810px) {
  	.header-slogan a {
    	font-size: 2vw;
  	}
  	.header-phone p {
    	font-size: 1.6vw;
  	}
}
@media screen and (max-width: 760px) {
	.content-format {
		padding: 0 20px;
	}
	.content-format h2 {
		margin-top: 30px;
		padding-top: 20px;
	}
	.about-gasner-links {
		position: relative;
	    background: #FFF;
	    padding:15px 30px;
	}
	.about-gasner-links ul {
		width: auto;
	}
	.hero-buttons {
  		display:none;
  	}
}
@media screen and (max-width: 680px) {
	.hamburger-menu {
		position: inherit;
	}
	.hamburger-dropdown {
		width: 100%;
		margin-top: 5px;
	}
	.hamburger-dropdown > ul {
		position: inherit;
		top: 0;
		left: 0;
		right: inherit;
		width: 100%;
		padding: 12px;
		display: none;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.hamburger-dropdown.active > ul {
		display: grid;
	}
	.hamburger-dropdown > ul > li {
		list-style: none;
	}
	.hamburger-dropdown > ul > li > a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 60px;
		padding: 12px 8px;
		background: var(--light-dark, #2c323c);
		border: 1px solid var(--border-dark, #343a40);
		border-radius: 8px;
		color: #fff;
		text-decoration: none;
		font-size: 1.1rem;
		font-weight: 500;
		text-align: center;
		transition: all 0.2s ease;
	}
	.hamburger-dropdown > ul > li > a:hover,
	.hamburger-dropdown > ul > li > a:active {
		background: var(--accent-burgundy, #d36d1d);
		border-color: var(--accent-burgundy, #d36d1d);
		color: #fff !important;
		transform: scale(0.98);
	}
	.hamburger-extra-links {
		display: none;
		background: #0F0F0F;
		width: 100%;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.hamburger-dropdown ul li a {
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.header-nav .megaMenuDropDown ul li {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	/* Hide nested dropdowns in tile view */
	.hamburger-dropdown .megaMenuDropDown {
		display: none !important;
	}
	.about-gasner-links {
    	position: relative;
    	top: 0;
    	left: 0;
    	background: #FFF;
  	}
  	.reviews-filter-form {
  		display:none;
  	}
  	.cases p i {
    	display: none;
  	}
  	.hero-details {
  		display: none;
  	}
}
@media screen and (max-width: 575px) {
	.header-slogan {
		text-align: center;
	}
	.hero-logo {
		display: none;
	}
	.header-separator {
		display: none;
	}
	.header-logo-mobile {
		display: block;
		text-align: center;
		padding-bottom: 10px;
	}
	.header-logo-mobile img {
		max-width: 200px;
		height: auto;
	}
	.header-nav > ul {
		padding-left:0;
	}
	.header-right-container {
		justify-content: center;
	}
	.header-right {
		justify-content: center;
		gap: 30px;
		margin-top: 10px;
		padding-bottom: 5px;
	}
	.header-nav {
		width: auto;
		padding-right: 0;
	}
	.header-nav > ul {
		display: none;
	}
	.hamburger-menu {
		display: block;
		margin-left: 0;
	}
	.hamburger-menu button {
		width: 48px;
		height: 48px;
		font-size: 1.2rem;
		background: var(--primary-blue);
	}
	.header-phone {
		text-align: center;
	}
	.header-phone p a {
		display:block;
	}
	.header-contact-button {
		width: auto;
		padding-left: 0;
	}
	.header-contact-button a {
		padding: 12px 24px;
		font-size: 1rem;
		height: 48px;
		display: flex;
		align-items: center;
	}
	.contact-item {
		margin-top: 5px;
		margin-bottom: 5px;
	}
	.default-single-main-content {
		padding-bottom: 20px;
	}
	.contact-cta {
		padding:20px 0;
	}
	footer {
		padding:20px 0 30px;
	}
	.footer-widget ul li a {
		padding: 10px 0;
		margin-bottom: 0;
	}
	.footer-bottom a {
		display: inline-block;
		padding: 8px 0;
	}
	.btn-hero-secondary {
		margin-left: 0;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.hero-buttons {
		text-align: center;
	}
	.hero-section {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.about-section {
		padding:20px 0;
	}
	.hero-section-content h2 {
		font-size: 1.5rem;
	}
	.hero-section-content h1 {
		font-size: 1.7rem;
	}
	.hero-right {
		padding-top: 10px;
	}
	.practice-areas {
		padding:20px 0;
	}
	.why-choose {
		padding:20px 0;
	}
	.peer-recognition {
		padding:20px 0;
	}
	.stats {
		padding:20px 0;
	}
	.testimonial {
		padding:20px 0;
	}
	.testimonial-card {
		padding:20px;
	}
	.free-consultation {
		padding:20px 0;
	}
	.footer-bottom {
		margin-top: 10px;
	}
	h2.section-title {
		font-size: 1.5rem;
	}
	header {
		position:relative;
		padding-bottom: 10px;
	}
	.main-content {
		padding:20px 0;
	}
	.hamburger-dropdown ul {
		padding-left: 10px;
		padding-right: 10px;
	}
	.featured-image-section {
		padding-top: 0;
	}
	.recent-case {
		width: calc(50% - 1px);
	}
	.recent-cases .recent-case:nth-child(3n+1) {
		border-color: #FFF;
	}
	.recent-cases .recent-case:nth-child(2n+1) {
		border-left-color: transparent;
	}
	.endorsement {
		padding-bottom: 10px;
		background: var(--nav-navy);
		margin-top: 10px;
		margin-bottom: 10px;
		padding-top: 15px;
		padding-bottom: 15px;
		margin-left: 10px;
		margin-right: 10px;
		border-radius: 8px;
	}
	.endorsement .thumb {
		margin-bottom: 10px;
	}
	.endorsement .e-author a {
		display: inline-block;
		padding: 10px 0;
		min-height: 44px;
	}
	.endorsement .e-author small {
		font-size: 14px;
	}
	 .about-gasner-title h2 {
    	padding-top: 5px;
    	font-size: 24px;
  	}
  	.about-gasner-title h3 {
    	font-size: 18px;
  	}
  	.about-gasner-contact {
    	padding-top: 5px;
  	}
  	.about-gasner-contact p {
    	margin-bottom: 0;
    	padding-bottom: 10px;
  	}
  	.header-phone p {
  		font-size: 1.4rem;
  	}
  	.featured-post .blog-image {
  		height: auto;
  	}
  	.header-slogan a {
    font-size: 6vw;
    }
}
@media screen and (max-width: 390px) {
	.about-gasner-title h2 {
		font-size: 18px;
	}
	.about-gasner-title h3 {
		font-size: 16px;
	}
	.membership-list ul {
		columns: 1;
	}
}
@media screen and (max-width: 370px) {
	.header-slogan a {
		font-size: 1.4rem;
	}
}