/* CSS Variables */
:root {
  --black: rgba(0, 0, 0, 1);
  --white: rgba(255, 255, 255, 1);
  --red: #c01120;
  --red-hover: #a00f1c;
  --gray-light: #f1f1f1;
  --gray-border: #efefef;
  --gray-text: #333333;
  --gray-light-text: #555555;
  
  /* Typography */
  --font-inter: 'Inter', Helvetica, sans-serif;
  --font-poppins: 'Poppins', Helvetica, sans-serif;
  --font-old-standard: 'Old Standard TT', serif;
  
  /* Shadows */
  --main-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-poppins);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--black);
}

.top-bar {
  display: none;
  height: 32px;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item img {
  width: 18px;
  height: 18px;
}

.contact-item span {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--white);
}

.right-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.right-info a {
  display: flex;
  align-items: center;
}

.right-info img {
  width: 16px;
  height: 16px;
  width: auto;
  cursor: pointer;
  transition: opacity 0.3s;
.right-info img[src*="facebook-f.png"] {
  width: auto;
  height: 24px;
}

.right-info img[src*="facebook-f"] {
  width: auto;
  height: 24px;
}

.right-info img[alt="Facebook"] {
  width: auto;
}

}

.right-info img:hover {
  opacity: 0.8;
}

.main-header {
  height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background-color: var(--black);
  border-bottom: 1px solid rgba(148, 148, 148, 0.25);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: between;
  width: 100%;
  max-width: 1440px;
}

/* Mobile Header */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-logo {
  width: 60px;
  height: 75px;
  object-fit: cover;
  cursor: pointer;
}

.mobile-menu-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-btn img {
  width: 32px;
  height: 32px;
}

/* Desktop Header */
.desktop-header {
  display: none;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.desktop-logo {
  width: 82.64px;
  height: 103px;
  object-fit: cover;
  cursor: pointer;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  margin-left: 24px;
}

.desktop-nav a {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.4px;
  line-height: 140%;
  cursor: pointer;
  transition: text-decoration 0.3s;
}

.desktop-nav a:hover {
  text-decoration: underline;
}

.cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 40px;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: var(--main-shadow);
}

.cta-button:hover {
  background-color: var(--red-hover);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background-color: var(--black);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 48px;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-logo {
  width: 100px;
  height: 125px;
  object-fit: cover;
  margin-bottom: 32px;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.mobile-nav a {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.4px;
  line-height: 140%;
  cursor: pointer;
  transition: text-decoration 0.3s;
}

.mobile-nav a:hover {
  text-decoration: underline;
}

.mobile-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: var(--main-shadow);
}

.mobile-cta-button:hover {
  background-color: var(--red-hover);
}

/* Mobile menu social icons */
.mobile-menu-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.mobile-menu-social img {
  width: auto;
  height: 24px;
}

.mobile-menu-social img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.mobile-menu-social img:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 120px;
  margin-bottom: 60px;
  padding-top: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
}

.desktop-video {
  display: none;
}

.mobile-video {
  display: block;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.hero-desktop {
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 60px;
  padding: 0 80px;
  height: 100%;
  padding-bottom: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero-right {
  display: flex;
  align-items: flex-end;
}

.hero-logo {
  width: 123.96px;
  height: 154.5px;
  object-fit: cover;
}

.hero-subtitle {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--white);
  font-size: 20px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--white);
  font-size: 90px;
  text-align: center;
  letter-spacing: -2px;
  line-height: normal;
}

.hero-right img {
  width: 416px;
  height: 487.5px;
  object-fit: cover;
}

.hero-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100vh;
  justify-content: flex-start;
  padding-top: 10vh;
}

.hero-mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 16px 350px;
  padding: 40px 20px 40px;
  z-index: 2;
  margin-bottom: 60px;
}

.hero-mobile-logo {
  width: 82.64px;
  height: 103px;
  object-fit: cover;
  margin-bottom: 24px;
}

.hero-mobile-subtitle {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
  text-align: center;
  margin-bottom: 24px;
}

.hero-mobile-title {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--white);
  font-size: 36px;
  text-align: center;
  letter-spacing: -2px;
  line-height: normal;
  max-width: 601px;
}

.hero-mobile-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  margin-top: auto;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}

.hero-mobile-image img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* About Section */
.about-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 120px 16px;
}

.about-content {
  position: relative;
  width: 100%;
  max-width: 1162px;
  height: auto;
}

.about-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image {
  display: none;
  width: 646px;
  height: 728px;
  object-fit: cover;
}

.about-card {
  width: 100%;
  max-width: 725px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--main-shadow);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 48px;
  text-align: center;
  line-height: normal;
  margin-bottom: 12px;
}

.text-red {
  color: var(--red);
}

.text-black {
  color: var(--black);
}

.about-text {
  font-family: var(--font-poppins);
  font-weight: 400;
  color: var(--black);
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}

/* Features Section */
.features-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 120px 16px;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  position: relative;
  width: 363px;
  height: 243px;
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-border);
  box-shadow: var(--main-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}

.feature-icon {
  width: 48px;
  height: 48px;
}

.language-icon {
  width: 80.11px;
}

.feature-title {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--gray-text);
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.feature-description {
  font-family: var(--font-poppins);
  font-weight: 400;
  color: var(--gray-text);
  font-size: 16px;
  text-align: center;
}

/* Practice Areas Section */
.practice-areas-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 120px 16px;
  width: 100%;
}

.practice-areas-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1440px;
}

.practice-areas-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.section-subtitle {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--red);
  font-size: 32px;
}

.section-title {
  font-family: var(--font-inter);
  font-weight: 900;
  color: var(--white);
  font-size: 64px;
}

.practice-areas-grid {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.practice-areas-row {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.practice-area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.practice-area-item:hover {
  transform: scale(1.05);
}

.practice-area-image {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.practice-area-image.standard {
  width: 360px;
  height: 240px;
}

.practice-area-image.large {
  width: 408px;
  height: 288px;
  margin: -20px -24px;
}

.practice-area-item:hover .practice-area-image {
  transform: scale(1.1);
}

.practice-area-title {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--white);
  font-size: 24px;
  letter-spacing: 0.5px;
  transition: text-decoration 0.3s;
}

.practice-area-item:hover .practice-area-title {
  text-decoration: underline;
}

/* CEO Section */
.ceo-section {
  position: relative;
  width: 100%;
  max-width: 1275px;
  margin: 0 auto;
  padding: 0 16px;
}

.ceo-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ceo-anecdote {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
}

.ceo-quote {
  font-family: var(--font-inter);
  font-weight: 400;
  color: var(--white);
  font-size: 16px;
  line-height: 32px;
  max-width: 498px;
}

.ceo-signature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ceo-name {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--red);
  font-size: 24px;
  letter-spacing: 0.5px;
}

.ceo-title {
  font-family: var(--font-inter);
  font-weight: 400;
  color: var(--black);
  font-size: 16px;
  letter-spacing: 0.5px;
}

.ceo-image-container {
  order: 2;
  position: relative;
  width: 100%;
  background-color: var(--red);
  padding: 16px;
}

.ceo-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.ceo-label {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--white);
  font-size: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 16px;
}

/* Want Cash Section */
.want-cash-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 120px 16px;
  width: 100%;
}

.want-cash-container {
  display: flex;
  flex-direction: column;
  max-width: 1272px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 46px 24px;
  width: 100%;
  background-color: #d9d9d9;
  border-radius: 16px;
  overflow: hidden;
}

.want-cash-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.want-cash-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 48px;
  line-height: normal;
  width: 501px;
  max-width: 100%;
}

.want-cash-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 40px;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: var(--main-shadow);
}

.want-cash-button:hover {
  background-color: rgba(192, 17, 32, 0.9);
}

.want-cash-image {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--gray-light);
  overflow: hidden;
  padding: 120px 0;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.testimonials-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.testimonials-title-section .section-subtitle {
  color: var(--red);
}

.testimonials-title-section .section-title {
  color: var(--black);
  font-size: 48px;
  text-align: center;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0.5px solid var(--gray-text);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.testimonial-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.08));
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.testimonial-content {
  position: relative;
  width: 100%;
  padding: 16px;
  background-size: 100% 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote-mark {
  font-family: var(--font-old-standard);
  font-weight: 700;
  color: var(--black);
  font-size: 48px;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.testimonial-text {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 24px;
  color: var(--gray-light-text);
  flex: 1;
}

.testimonial-name {
  font-family: var(--font-inter);
  font-weight: 900;
  color: var(--red);
  font-size: 20px;
}

.testimonial-location {
  font-family: var(--font-inter);
  font-weight: 300;
  color: var(--black);
  font-size: 14px;
}

.testimonials-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: var(--main-shadow);
  width: 100%;
  max-width: 448px;
}

.testimonials-cta-button:hover {
  background-color: var(--red-hover);
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 120px 16px;
  width: 100%;
  background-color: var(--black);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 431px;
}

.footer-logo {
  width: 100px;
  height: 125px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-title {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--white);
  font-size: 40px;
  letter-spacing: 0.5px;
}

.footer-phone {
  font-family: var(--font-inter);
  font-weight: 300;
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.5px;
}

.footer-email {
  font-family: var(--font-inter);
  font-weight: 300;
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.5px;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-social img[alt="Facebook"] {
  width: auto;
  transition: opacity 0.3s;
}

.footer-social a:hover img {
  opacity: 0.8;
}

/* 18 Wheeler Page Styles */
.truck-page-main {
  margin-top: 169px;
}

.truck-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.truck-hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://ik.imagekit.io/vxnuia653/banners/18-wheeler-accident.png?updatedAt=1756921220906');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.truck-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.truck-hero-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.truck-hero-description {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.truck-red-section {
  background-color: var(--red);
  width: 100%;
  padding: 32px 20px;
  text-align: center;
}

.truck-section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.truck-red-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  text-align: left;
  letter-spacing: 1px;
  text-align: center;
}

.truck-content-section {
  background-color: var(--black);
  padding: 48px 0;
}

.truck-content-text {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 20px;
}

.truck-content-list {
  list-style: disc;
  list-style-position: inside;
  margin: 20px 0;
}

.truck-content-list li {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 12px;
}

.truck-final-cta {
  background-color: var(--black);
  padding: 64px 0;
  text-align: center;
}

.truck-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.truck-cta-button:hover {
  background-color: var(--red-hover);
}

.truck-footer {
  background-color: var(--black);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.truck-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.truck-footer-logo img {
  width: 100px;
  height: 125px;
}

.truck-footer-info {
  text-align: center;
}

.truck-footer-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}

.truck-footer-phone,
.truck-footer-email {
  font-family: var(--font-inter);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.truck-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.truck-footer-social img {
  width: 24px;
  height: 24px;
}

.truck-footer-hours {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--white);
}

/* Desktop Responsive */
@media (min-width: 768px) {
  .truck-page-main {
    margin-top: 201px;
  }

  .truck-hero {
    height: 70vh;
    min-height: 500px;
  }

  .truck-hero-title {
    font-size: 72px;
  }

  .truck-hero-description {
    font-size: 18px;
  }

  .truck-red-title {
    font-size: 48px;
  }

  .truck-content-text,
  .truck-content-list li {
    font-size: 18px;
  }

  .truck-cta-button {
    font-size: 24px;
    padding: 20px 40px;
  }

  .truck-footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .truck-footer-info {
    text-align: right;
  }
}

.time-limit-section,
.complex-claims-section,
.texas-laws-section,
.recovery-section,
.attorney-section {
  width: 100%;
  padding: 64px 0;
}

.time-limit-section {
  background-color: var(--red);
}

.complex-claims-section,
.texas-laws-section,
.recovery-section,
.attorney-section {
  background-color: var(--black);
}

.time-limit-container,
.complex-claims-container,
.texas-laws-container,
.recovery-container,
.attorney-container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.time-limit-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
}

.time-limit-content {
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
  max-width: 1024px;
  margin: 0 auto;
}

.time-limit-content ul {
  text-align: left;
  list-style: disc;
  list-style-position: inside;
  max-width: 768px;
  margin: 0 auto;
}

.time-limit-content li {
  margin: 8px 0;
}

.section-header-red {
  background-color: var(--red);
  text-align: center;
  padding: 32px;
  margin-bottom: 48px;
}

.section-header-red h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
}

.complex-claims-content,
.texas-laws-content,
.recovery-content,
.attorney-content {
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
}

.complex-claims-content ul,
.texas-laws-content ul,
.recovery-content ul,
.attorney-content ul {
  list-style: disc;
  list-style-position: inside;
  margin: 24px 0;
}

.complex-claims-content li,
.texas-laws-content li,
.recovery-content li,
.attorney-content li {
  margin: 12px 0;
}

.final-cta-section {
  width: 100%;
  background-color: var(--black);
  padding: 64px 0;
}

.final-cta-container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.final-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.final-cta-button:hover {
  background-color: var(--red-hover);
}

/* Car Accidents Page Styles */
.car-page-main {
  margin-top: 169px;
}

.car-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.car-hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://ik.imagekit.io/vxnuia653/Thumbnails/car%20accidents.png?updatedAt=1756746057245');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.car-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.car-hero-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.car-hero-description {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.car-red-section {
  background-color: var(--red);
  width: 100%;
  padding: 32px 20px;
  text-align: center;
}

.car-section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.car-red-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
}

.car-content-section {
  background-color: var(--black);
  padding: 48px 0;
}

.car-content-text {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 20px;
}

.car-content-list {
  list-style: disc;
  list-style-position: inside;
  margin: 20px 0;
}

.car-content-list li {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 12px;
}

.car-final-cta {
  background-color: var(--black);
  padding: 64px 0;
  text-align: center;
}

.car-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.car-cta-button:hover {
  background-color: var(--red-hover);
}

.car-footer {
  background-color: var(--black);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.car-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.car-footer-logo img {
  width: 100px;
  height: 125px;
}

.car-footer-info {
  text-align: center;
}

.car-footer-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}

.car-footer-phone,
.car-footer-email {
  font-family: var(--font-inter);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.car-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.car-footer-social img {
  width: 24px;
  height: 24px;
}

.car-footer-hours {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--white);
}

/* Desktop Responsive for Car Page */
@media (min-width: 768px) {
  .car-page-main {
    margin-top: 201px;
  }

  .car-hero {
    height: 70vh;
    min-height: 500px;
  }

  .car-hero-title {
    font-size: 72px;
  }

  .car-hero-description {
    font-size: 18px;
  }

  .car-red-title {
    font-size: 48px;
  }

  .car-content-text,
  .car-content-list li {
    font-size: 18px;
  }

  .car-cta-button {
    font-size: 24px;
    padding: 20px 40px;
  }

  .car-footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .car-footer-info {
    text-align: right;
  }
}

/* Premises Liability Page Styles */
.premises-page-main {
  margin-top: 169px;
}

.premises-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.premises-hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://ik.imagekit.io/vxnuia653/banners/premesis.png?updatedAt=1756921220881');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.premises-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.premises-hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.premises-hero-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.premises-hero-description {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.premises-red-section {
  background-color: var(--red);
  width: 100%;
  padding: 32px 20px;
  text-align: center;
}

.premises-section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.premises-red-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
}

.premises-content-section {
  background-color: var(--black);
  padding: 48px 0;
}

.premises-content-text {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 20px;
}

.premises-content-list {
  list-style: disc;
  list-style-position: inside;
  margin: 20px 0;
}

.premises-content-list li {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 12px;
}

.premises-final-cta {
  background-color: var(--black);
  padding: 64px 0;
  text-align: center;
}

.premises-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.premises-cta-button:hover {
  background-color: var(--red-hover);
}

.premises-footer {
  background-color: var(--black);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premises-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.premises-footer-logo img {
  width: 100px;
  height: 125px;
}

.premises-footer-info {
  text-align: center;
}

.premises-footer-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}

.premises-footer-phone,
.premises-footer-email {
  font-family: var(--font-inter);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.premises-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.premises-footer-social img {
  width: 24px;
  height: 24px;
}

.premises-footer-hours {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--white);
}

/* Desktop Responsive for Premises Page */
@media (min-width: 768px) {
  .premises-page-main {
    margin-top: 201px;
  }

  .premises-hero {
    height: 70vh;
    min-height: 500px;
  }

  .premises-hero-title {
    font-size: 72px;
  }

  .premises-hero-description {
    font-size: 18px;
  }

  .premises-red-title {
    font-size: 48px;
  }

  .premises-content-text,
  .premises-content-list li {
    font-size: 18px;
  }

  .premises-cta-button {
    font-size: 24px;
    padding: 20px 40px;
  }

  .premises-footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .premises-footer-info {
    text-align: right;
  }
}

/* Oil & Gas Injuries Page Styles */
.oil-gas-page-main {
  margin-top: 169px;
}

.oil-gas-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.oil-gas-hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://ik.imagekit.io/vxnuia653/banners/ong.png?updatedAt=1756921220720');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.oil-gas-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.oil-gas-hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.oil-gas-hero-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.oil-gas-hero-description {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.oil-gas-red-section {
  background-color: var(--red);
  width: 100%;
  padding: 32px 20px;
  text-align: center;
}

.oil-gas-section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.oil-gas-red-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
}

.oil-gas-content-section {
  background-color: var(--black);
  padding: 48px 0;
}

.oil-gas-content-text {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 20px;
}

.oil-gas-content-list {
  list-style: disc;
  list-style-position: inside;
  margin: 20px 0;
}

.oil-gas-content-list li {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 12px;
}

.oil-gas-final-cta {
  background-color: var(--black);
  padding: 64px 0;
  text-align: center;
}

.oil-gas-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.oil-gas-cta-button:hover {
  background-color: var(--red-hover);
}

.oil-gas-footer {
  background-color: var(--black);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.oil-gas-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.oil-gas-footer-logo img {
  width: 100px;
  height: 125px;
}

.oil-gas-footer-info {
  text-align: center;
}

.oil-gas-footer-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}

.oil-gas-footer-phone,
.oil-gas-footer-email {
  font-family: var(--font-inter);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.oil-gas-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.oil-gas-footer-social img {
  width: 24px;
  height: 24px;
}

.oil-gas-footer-hours {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--white);
}

/* Desktop Responsive for Oil & Gas Page */
@media (min-width: 768px) {
  .oil-gas-page-main {
    margin-top: 201px;
  }

  .oil-gas-hero {
    height: 70vh;
    min-height: 500px;
  }

  .oil-gas-hero-title {
    font-size: 72px;
  }

  .oil-gas-hero-description {
    font-size: 18px;
  }

  .oil-gas-red-title {
    font-size: 48px;
  }

  .oil-gas-content-text,
  .oil-gas-content-list li {
    font-size: 18px;
  }

  .oil-gas-cta-button {
    font-size: 24px;
    padding: 20px 40px;
  }

  .oil-gas-footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .oil-gas-footer-info {
    text-align: right;
  }
}

/* Work Injuries Page Styles */
.work-injuries-page-main {
  margin-top: 169px;
}

.work-injuries-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-injuries-hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://ik.imagekit.io/vxnuia653/banners/workInjury.png?updatedAt=1756921220881');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.work-injuries-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-injuries-hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.work-injuries-hero-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.work-injuries-hero-description {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.work-injuries-red-section {
  background-color: var(--red);
  width: 100%;
  padding: 32px 20px;
  text-align: center;
}

.work-injuries-section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.work-injuries-red-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
}

.work-injuries-content-section {
  background-color: var(--black);
  padding: 48px 0;
}

.work-injuries-content-text {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 20px;
}

.work-injuries-content-list {
  list-style: disc;
  list-style-position: inside;
  margin: 20px 0;
}

.work-injuries-content-list li {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 12px;
}

.work-injuries-final-cta {
  background-color: var(--black);
  padding: 64px 0;
  text-align: center;
}

.work-injuries-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.work-injuries-cta-button:hover {
  background-color: var(--red-hover);
}

.work-injuries-footer {
  background-color: var(--black);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.work-injuries-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.work-injuries-footer-logo img {
  width: 100px;
  height: 125px;
}

.work-injuries-footer-info {
  text-align: center;
}

.work-injuries-footer-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}

.work-injuries-footer-phone,
.work-injuries-footer-email {
  font-family: var(--font-inter);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.work-injuries-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.work-injuries-footer-social img {
  width: 24px;
  height: 24px;
}

.work-injuries-footer-hours {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--white);
}

/* Desktop Responsive for Work Injuries Page */
@media (min-width: 768px) {
  .work-injuries-page-main {
    margin-top: 201px;
  }

  .work-injuries-hero {
    height: 70vh;
    min-height: 500px;
  }

  .work-injuries-hero-title {
    font-size: 72px;
  }

  .work-injuries-hero-description {
    font-size: 18px;
  }

  .work-injuries-red-title {
    font-size: 48px;
  }

  .work-injuries-content-text,
  .work-injuries-content-list li {
    font-size: 18px;
  }

  .work-injuries-cta-button {
    font-size: 24px;
    padding: 20px 40px;
  }

  .work-injuries-footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .work-injuries-footer-info {
    text-align: right;
  }
}

/* Construction Injuries Page Styles */
.construction-page-main {
  margin-top: 169px;
}

.construction-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.construction-hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://ik.imagekit.io/vxnuia653/banners/constructionInjuries.png?updatedAt=1756923973877');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.construction-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.construction-hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.construction-hero-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.construction-hero-description {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.construction-red-section {
  background-color: var(--red);
  width: 100%;
  padding: 32px 20px;
  text-align: center;
}

.construction-section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.construction-red-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
}

.construction-content-section {
  background-color: var(--black);
  padding: 48px 0;
}

.construction-content-text {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 20px;
}

.construction-content-list {
  list-style: disc;
  list-style-position: inside;
  margin: 20px 0;
}

.construction-content-list li {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 12px;
}

.construction-final-cta {
  background-color: var(--black);
  padding: 64px 0;
  text-align: center;
}

.construction-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.construction-cta-button:hover {
  background-color: var(--red-hover);
}

.construction-footer {
  background-color: var(--black);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.construction-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.construction-footer-logo img {
  width: 100px;
  height: 125px;
}

.construction-footer-info {
  text-align: center;
}

.construction-footer-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}

.construction-footer-phone,
.construction-footer-email {
  font-family: var(--font-inter);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.construction-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.construction-footer-social img {
  width: 24px;
  height: 24px;
}

.construction-footer-hours {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--white);
}

/* Desktop Responsive for Construction Page */
@media (min-width: 768px) {
  .construction-page-main {
    margin-top: 201px;
  }

  .construction-hero {
    height: 70vh;
    min-height: 500px;
  }

  .construction-hero-title {
    font-size: 72px;
  }

  .construction-hero-description {
    font-size: 18px;
  }

  .construction-red-title {
    font-size: 48px;
  }

  .construction-content-text,
  .construction-content-list li {
    font-size: 18px;
  }

  .construction-cta-button {
    font-size: 24px;
    padding: 20px 40px;
  }

  .construction-footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .construction-footer-info {
    text-align: right;
  }
}

/* Aviation Accidents Page Styles */
.aviation-page-main {
  margin-top: 169px;
}

.aviation-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aviation-hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://ik.imagekit.io/vxnuia653/banners/aviationAccidents.png?updatedAt=1756921220859');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.aviation-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aviation-hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.aviation-hero-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.aviation-hero-description {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.aviation-red-section {
  background-color: var(--red);
  width: 100%;
  padding: 32px 20px;
  text-align: center;
}

.aviation-section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.aviation-red-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
}

.aviation-content-section {
  background-color: var(--black);
  padding: 48px 0;
}

.aviation-content-text {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 20px;
}

.aviation-content-list {
  list-style: disc;
  list-style-position: inside;
  margin: 20px 0;
}

.aviation-content-list li {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 12px;
}

.aviation-final-cta {
  background-color: var(--black);
  padding: 64px 0;
  text-align: center;
}

.aviation-cta-button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.aviation-cta-button:hover {
  background-color: var(--red-hover);
}

.aviation-footer {
  background-color: var(--black);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aviation-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.aviation-footer-logo img {
  width: 100px;
  height: 125px;
}

.aviation-footer-info {
  text-align: center;
}

.aviation-footer-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}

.aviation-footer-phone,
.aviation-footer-email {
  font-family: var(--font-inter);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.aviation-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.aviation-footer-social img {
  width: 24px;
  height: 24px;
}

.aviation-footer-hours {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--white);
}

/* Desktop Responsive for Aviation Page */
@media (min-width: 768px) {
  .aviation-page-main {
    margin-top: 201px;
  }

  .aviation-hero {
    height: 70vh;
    min-height: 500px;
  }

  .aviation-hero-title {
    font-size: 72px;
  }

  .aviation-hero-description {
    font-size: 18px;
  }

  .aviation-red-title {
    font-size: 48px;
  }

  .aviation-content-text,
  .aviation-content-list li {
    font-size: 18px;
  }

  .aviation-cta-button {
    font-size: 24px;
    padding: 20px 40px;
  }

  .aviation-footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .aviation-footer-info {
    text-align: right;
  }
}

/* Motorcycle Accidents Page Styles */
.motorcycle-page-main {
  margin-top: 120px;
}

.motorcycle-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.motorcycle-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://ik.imagekit.io/vxnuia653/banners/motorcycleAccidents.png?updatedAt=1756921221211');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.motorcycle-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.motorcycle-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.motorcycle-hero-title {
  font-family: var(--font-inter);
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.motorcycle-hero-description {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.motorcycle-red-section {
  background-color: var(--red);
  padding: 0;
}

.motorcycle-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}

.motorcycle-red-title {
  font-family: var(--font-inter);
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin: 0;
  text-align: center;
  letter-spacing: -0.02em;
}

.motorcycle-content-section {
  background-color: #000000;
  padding: 48px 0;
}

.motorcycle-content-text {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 1.6;
  margin-bottom: 24px;
}

.motorcycle-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.motorcycle-content-list li {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}

.motorcycle-content-list li::before {
  content: "•";
  color: white;
  position: absolute;
  left: 0;
  top: 0;
}

.motorcycle-final-cta {
  background-color: #000000;
  padding: 48px 0;
  text-align: center;
}

.motorcycle-cta-button {
  background-color: var(--red);
  color: white;
  border: none;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 900;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.motorcycle-cta-button:hover {
  background-color: var(--red-hover);
}

.motorcycle-footer {
  background-color: #000000;
  padding: 48px 0;
  border-top: 1px solid #333;
}

.motorcycle-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.motorcycle-footer-logo img {
  height: 60px;
}

.motorcycle-footer-info {
  text-align: right;
}

.motorcycle-footer-title {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.motorcycle-footer-phone {
  font-family: var(--font-inter);
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.motorcycle-footer-email {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
}

.motorcycle-footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.motorcycle-footer-social img {
  width: 24px;
  height: 24px;
}

.motorcycle-footer-hours {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  color: white;
}

@media (max-width: 768px) {
  .motorcycle-page-main {
    margin-top: 80px;
  }

  .motorcycle-hero {
    height: 300px;
  }

  .motorcycle-hero-title {
    font-size: 32px;
  }

  .motorcycle-hero-description {
    font-size: 16px;
  }

  .motorcycle-red-title {
    font-size: 20px;
  }

  .motorcycle-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .motorcycle-footer-info {
    text-align: center;
  }

  .motorcycle-footer-social {
    justify-content: center;
  }
}

/* Longshore DBA Injuries Page Styles */
.longshore-dba-page-main {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: 80vh;
  background-image: url('https://ik.imagekit.io/vxnuia653/banners/longshoreDBA.png?updatedAt=1756921220898');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 60px;
  justify-content: center;
  overflow: hidden;
}

/* Longshore DBA Injuries Page Styles */
.longshore-dba-main {
  margin-top: 120px;
}

.longshore-dba-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('https://ik.imagekit.io/vxnuia653/banners/longshoreDBA.png?updatedAt=1756921220898');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.longshore-dba-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.longshore-dba-hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.longshore-dba-hero-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 64px;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.longshore-dba-hero-description {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  text-align: center;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.longshore-dba-red-section {
  background-color: var(--red);
  padding: 20px 0;
}

.longshore-dba-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.longshore-dba-red-title {
  font-family: var(--font-inter);
  font-size: 24px;
  font-weight: 900;
  color: white;
  text-align: center;
  margin: 0;
  letter-spacing: -0.02em;
}

.longshore-dba-content-section {
  background-color: #000000;
  padding: 40px 0;
}

.longshore-dba-content-text {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.6;
  color: white;
  margin-bottom: 20px;
}

.longshore-dba-content-list {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.6;
  color: white;
  margin: 20px 0;
  padding-left: 20px;
}

.longshore-dba-content-list li {
  margin-bottom: 10px;
}

.longshore-dba-final-cta {
  background-color: #000000;
  padding: 40px 0;
  text-align: center;
}

.longshore-dba-cta-button {
  background-color: var(--red);
  color: white;
  border: none;
  padding: 15px 30px;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 900;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.longshore-dba-cta-button:hover {
  background-color: var(--red-hover);
}

.longshore-dba-footer {
  background-color: #000000;
  padding: 40px 0;
  border-top: 1px solid #333;
}

.longshore-dba-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.longshore-dba-footer-logo img {
  height: 60px;
}

.longshore-dba-footer-info {
  text-align: right;
}

.longshore-dba-footer-title {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.longshore-dba-footer-phone {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.longshore-dba-footer-email {
  font-family: var(--font-inter);
  font-size: 16px;
  color: white;
  margin-bottom: 10px;
}

.longshore-dba-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.longshore-dba-footer-social img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .longshore-dba-main {
    height: 50vh;
    height: 70vh;
  }
  
  .longshore-dba-hero-content-section {
    padding: 60px 0;
  }

  .longshore-dba-hero-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .longshore-dba-hero-description {
    font-size: 18px;
  }

  .longshore-dba-red-title {
    font-size: 20px;
  }

  .longshore-dba-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .longshore-dba-footer-info {
    text-align: center;
  }

  .longshore-dba-footer-social {
    justify-content: center;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .top-bar {
    display: flex;
  }

  .mobile-header {
    display: none;
  }

  .desktop-header {
    display: flex;
  }

  .desktop-video {
    display: block;
  }

  .mobile-video {
    display: none;
  }

  .hero-desktop {
    display: flex;
  }

  .hero-mobile {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .hero-right img {
    width: 468px;
    height: 548px;
  }
}

@media (min-width: 768px) {

  .about-container {
    flex-direction: row;
    align-items: center;
  }

  .about-image {
    display: block;
  }

  .about-card {
    margin-left: -109px;
  }

  .about-text {
    font-size: 16px;
    text-align: left;
  }

  .features-container {
    flex-direction: row;
  }

  .practice-areas-section {
    padding-left: 0;
  }

  .practice-areas-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .practice-areas-row:nth-child(2) {
    justify-content: center;
  }

  .ceo-content {
    flex-direction: row;
    align-items: center;
    gap: 52px;
  }

  .ceo-anecdote {
    order: 1;
    padding: 0;
  }

  .ceo-image-container {
    order: 2;
    width: 725px;
    height: 334px;
    position: relative;
  }

  .ceo-image {
    position: absolute;
    width: 412px;
    height: 394px;
    top: -60px;
    right: 29px;
  }

  .ceo-label {
    position: absolute;
    top: 93px;
    left: 29px;
    font-size: 48px;
    text-align: left;
    margin-top: 0;
  }

  .want-cash-container {
    flex-direction: row;
    gap: 96px;
    padding: 46px 48px;
  }

  .want-cash-content {
    width: 612px;
    align-items: flex-start;
    text-align: left;
  }

  .want-cash-title {
    font-size: 64px;
  }

  .want-cash-button {
    font-size: 18px;
  }

  .testimonials-container {
    gap: 48px;
    padding: 0 20px;
  }

  .testimonials-header {
    flex-direction: row;
    height: 120px;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    padding-right: 96px;
  }

  .testimonials-title-section {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }

  .testimonials-nav {
    gap: 48px;
  }

  .testimonials-grid {
    flex-direction: row;
    gap: 32px;
  }

  .testimonial-item {
    flex: 1;
  }

  .testimonial-card {
    min-height: 320px;
  }

  .testimonials-cta-button {
    font-size: 24px;
    line-height: 40px;
    width: auto;
  }

  .footer-content {
    flex-direction: row;
    gap: 40px;
    max-width: 431px;
  }

  .footer-logo {
    width: 143px;
    height: 178.6px;
  }

  .footer-info {
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    margin-right: -5.75px;
  }

  .footer-phone,
  .footer-email {
    font-size: 20px;
  }

  .truck-hero-title {
    font-size: 112px;
  }

  .truck-hero-text {
    font-size: 20px;
  }

  .time-limit-title,
  .section-header-red h2 {
    font-size: 64px;
  }

  .truck-hero-title {
    font-size: 112px;
  }

  .truck-hero-text {
    font-size: 20px;
  }

  .time-limit-title,
  .section-header-red h2 {
    font-size: 64px;
  }
}

@media (min-width: 1536px) {
  .hero-right img {
    width: 624px;
    height: 731.25px;
  }
}