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

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: inherit;
  background-color: #FFFFFF;
  color: #333333;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
optgroup,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.5;
}

h1 {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 48rem) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.25rem;
  font-weight: 500;
}

h3 {
  font-size: 1.125rem;
  font-weight: 500;
}

h4, label, button {
  font-size: 1rem;
  font-weight: 500;
}

input {
  font-size: 1rem;
  font-weight: 400;
}

p {
  line-height: 1.5;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.site-header {
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  top: 0;
  width: 100%;
  z-index: 1030;
}

.main-navigation .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 40rem) {
  .main-navigation .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .main-navigation .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.main-navigation .container {
  max-width: 80rem;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  max-width: 250px;
}

.site-logo-image {
  width: auto;
  object-fit: contain;
}

.logo-content {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C1272D;
  letter-spacing: -0.025em;
}

.logo-tagline {
  font-size: 0.75rem;
  color: #6D6D6D;
  letter-spacing: 0.025em;
}

.desktop-nav {
  display: none;
}
@media (min-width: 48rem) {
  .desktop-nav {
    display: flex;
    gap: 0.25rem;
  }
}

.nav-item {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  color: #333333;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-item:hover {
  background-color: #F3F3F5;
}
.nav-item.active {
  background-color: #C1272D;
  color: #FFFFFF;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
  padding: 0.5rem;
  color: #333333;
  display: block;
}
@media (min-width: 48rem) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle .menu-icon {
  display: none;
}
.mobile-menu-toggle .menu-icon.menu-open {
  display: block;
}
.mobile-menu-toggle .menu-icon.menu-close {
  display: none;
}
.mobile-menu-toggle.active .menu-open {
  display: none;
}
.mobile-menu-toggle.active .menu-close {
  display: block;
}

.mobile-nav {
  display: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #E5E5E5;
}
@media (min-width: 48rem) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-item {
  padding: 0.75rem 1rem;
  text-align: left;
  border-radius: 0.375rem;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  color: #333333;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.mobile-nav-item:hover {
  background-color: #F3F3F5;
}
.mobile-nav-item.active {
  background-color: #C1272D;
  color: #FFFFFF;
}

.site-footer {
  background-color: #FFFFFF;
  border-top: 1px solid #E5E5E5;
}

.footer-cta {
  background-color: #F5F5F5;
  padding: 3rem 0;
}

.footer-cta-content {
  text-align: center;
}

.footer-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #C1272D;
  color: #FFFFFF;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-cta-button:hover {
  background-color: #A01F24;
}

.footer-main {
  padding: 3rem 0;
}

.footer-grid {
  display: none;
}
@media (min-width: 48rem) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.footer-logo-image {
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.footer-brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #C1272D;
  margin-bottom: 0.25rem;
}

.footer-brand-tagline {
  font-size: 0.875rem;
  color: #6D6D6D;
}

.footer-description {
  font-size: 0.875rem;
  color: #6D6D6D;
  margin-top: 1rem;
}

.footer-prr-inline {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-prr-inline .footer-prr-logo-image {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}
.footer-prr-inline .footer-prr-text {
  font-size: 0.875rem;
  color: #6D6D6D;
  margin: 0;
}

.footer-column-title {
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: #6D6D6D;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover {
  color: #C1272D;
}

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

.footer-contact-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.footer-contact-label span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social-links a:hover {
  transform: scale(1.1);
}

.footer-social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-mobile {
  display: block;
}
@media (min-width: 48rem) {
  .footer-mobile {
    display: none;
  }
}

.footer-prr {
  background-color: #F5F5F5;
  border-top: 1px solid #E5E5E5;
  padding: 2rem 0;
}

.footer-prr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .footer-prr-content {
    flex-direction: row;
  }
}

.footer-prr-badge {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.footer-prr-logo-image {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-prr-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.25rem;
}

.footer-prr-subtitle {
  font-size: 0.75rem;
  color: #6D6D6D;
}

.footer-prr-text {
  font-size: 0.875rem;
  color: #6D6D6D;
  text-align: center;
}
@media (min-width: 48rem) {
  .footer-prr-text {
    text-align: left;
    max-width: 28rem;
  }
}

.footer-legal {
  background-color: #FFFFFF;
  border-top: 1px solid #E5E5E5;
  padding: 1.5rem 0;
}

.footer-legal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .footer-legal-content {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: #6D6D6D;
  text-align: center;
}
@media (min-width: 48rem) {
  .footer-copyright {
    text-align: left;
  }
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer-legal-links a {
  color: #6D6D6D;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-legal-links a:hover {
  color: #C1272D;
}
.footer-legal-links span {
  color: #6D6D6D;
}

.btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}
.btn:focus-visible {
  outline: 2px solid #C1272D;
  outline-offset: 2px;
}

.btn-primary {
  background-color: #C1272D;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #A01F24;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #333333;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #C1272D;
  color: #C1272D;
}
.btn-outline:hover {
  background-color: #C1272D;
  color: #FFFFFF;
}
.btn-outline.btn-outline-white {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.btn-outline.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: #C1272D;
}

.btn-white {
  background-color: #FFFFFF;
  color: #C1272D;
}
.btn-white:hover {
  background-color: #F3F3F5;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 40rem) {
  .hero-buttons {
    flex-direction: row;
  }
}

.footer-cta-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #C1272D;
  color: #FFFFFF;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.footer-cta-button:hover {
  background-color: #A01F24;
}
.footer-cta-button:focus-visible {
  outline: 2px solid #C1272D;
  outline-offset: 2px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #333333;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D1D1;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #C1272D;
  box-shadow: 0 0 0 2px rgba(193, 39, 45, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 3rem;
  appearance: none;
}

.form-submit {
  width: 100%;
  background-color: #C1272D;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background-color: #A01F24;
}
.form-submit:focus-visible {
  outline: 2px solid #C1272D;
  outline-offset: 2px;
}

.form-message {
  text-align: center;
  font-size: 0.875rem;
  color: #6D6D6D;
  margin-top: 0.75rem;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6D6D6D;
}

.card {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

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

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 0.875rem;
  color: #6D6D6D;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #C1272D;
  text-decoration: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-link:hover {
  gap: 0.75rem;
}

.section {
  padding: 5rem 0;
}

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

.section-gray {
  background-color: #F5F5F5;
}

.section-primary {
  background-color: #C1272D;
  color: #FFFFFF;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6D6D6D;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(51, 51, 51, 0.9), rgba(51, 51, 51, 0.7));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 40rem) {
  .hero-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .hero-content {
    padding: 0 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: #FFC20E;
  color: #333333;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 40rem) {
  .hero-buttons {
    flex-direction: row;
  }
}

.location-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background-color: #C1272D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.location-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  fill: #FFFFFF;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.h-\[600px\] {
  height: 600px;
}

.h-\[400px\] {
  height: 400px;
}

.h-\[300px\] {
  height: 300px;
}

.h-full {
  height: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.inline-flex {
  display: inline-flex;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-4 {
  width: 1rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-full {
  width: 100%;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-full {
  height: 100%;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.border-2 {
  border-width: 2px;
}

.border-white {
  border-color: #FFFFFF;
}

.bg-\[\#C1272D\] {
  background-color: #C1272D;
}

.bg-\[\#F5F5F5\] {
  background-color: #F5F5F5;
}

.bg-\[\#FFC20E\] {
  background-color: #FFC20E;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-gray-100 {
  background-color: #F3F3F5;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-\[\#333333\]\/90 {
  --tw-gradient-from: rgba(51, 51, 51, 0.9);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 51, 51, 0.7));
}

.to-\[\#333333\]\/70 {
  --tw-gradient-to: rgba(51, 51, 51, 0.7);
}

.home-hero-section {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.home-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(51, 51, 51, 0.9), rgba(51, 51, 51, 0.7));
  z-index: 0;
}

.products-grid-overlay {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
}

.to-\[\#333333\]\/70 {
  --tw-gradient-to: rgba(0, 0, 0, 0.8);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.text-\[\#333333\] {
  color: #333333;
}

.text-\[\#6D6D6D\] {
  color: #6D6D6D;
}

.text-\[\#FFC20E\] {
  color: #FFC20E;
}

.text-white {
  color: #FFFFFF;
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.object-cover {
  object-fit: cover;
}

.cursor-pointer {
  cursor: pointer;
}

.z-10 {
  z-index: 10;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}

.aspect-video {
  aspect-ratio: 16/9;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.hover\:bg-\[\#A01F24\]:hover {
  background-color: #A01F24;
}

.hover\:bg-white:hover {
  background-color: #FFFFFF;
}

.hover\:bg-gray-100:hover {
  background-color: #F3F3F5;
}

.hover\:text-\[\#333333\]:hover {
  color: #333333;
}

.hover\:text-\[\#C1272D\]:hover {
  color: #C1272D;
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:gap-3 {
  gap: 0.75rem;
}

@media (min-width: 40rem) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 48rem) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:text-6xl {
    font-size: 3.75rem;
  }
}
@media (min-width: 64rem) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.italic {
  font-style: italic;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-bold {
  font-weight: 700;
}

.text-\[\#333333\] {
  color: #333333;
}

.text-\[\#6D6D6D\] {
  color: #6D6D6D;
}

.text-white {
  color: #FFFFFF;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-\[\#F5F5F5\] {
  background-color: #F5F5F5;
}

.bg-\[\#C1272D\] {
  background-color: #C1272D;
}

.bg-\[\#FFC20E\] {
  background-color: #FFC20E;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.flex {
  display: flex;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 40rem) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 48rem) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.object-cover {
  object-fit: cover;
}

.overflow-hidden {
  overflow: hidden;
}

.hero-section {
  height: 500px;
}
.hero-section .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .hero-section .hero-title {
    font-size: 3.75rem;
  }
}
.hero-section .hero-subtitle {
  font-size: 1.25rem;
  max-width: 42rem;
}

.section-content {
  font-size: 1.125rem;
  color: #6D6D6D;
  line-height: 1.75;
}
.section-content p {
  margin-bottom: 1.5rem;
}
.section-content p:last-child {
  margin-bottom: 0;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background-color: #C1272D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.value-icon svg {
  width: 2rem !important;
  height: 2rem !important;
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
  fill: none !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  display: block !important;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0;
}

.value-icon-yellow {
  background-color: #FFC20E;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}
.value-icon-yellow svg {
  width: 2rem !important;
  height: 2rem !important;
  color: #333333 !important;
  stroke: #333333 !important;
  fill: none !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  display: block !important;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0;
}

.differential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.differential-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #C1272D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.differential-icon svg {
  width: 1rem !important;
  height: 1rem !important;
  display: block !important;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0;
}

.differential-text {
  font-size: 1.125rem;
  color: #333333;
  margin: 0;
}

.products-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(51, 51, 51, 0.9), rgba(51, 51, 51, 0.7));
  z-index: 0;
}
.products-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .products-hero .hero-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .products-hero .hero-content {
    padding: 0 2rem;
  }
}
.products-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .products-hero .hero-title {
    font-size: 3.75rem;
  }
}
.products-hero .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto;
}

.products-introduction {
  padding: 3rem 0;
  background-color: #FFFFFF;
}
.products-introduction .section-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  font-size: 1.125rem;
  color: #6D6D6D;
}
@media (min-width: 48rem) {
  .products-introduction .section-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .products-introduction .section-content {
    padding: 0 2rem;
  }
}

.products-categories {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.products-categories .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 3rem;
  text-align: center;
}
.products-categories .categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .products-categories .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .products-categories .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products-categories .category-card {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.products-categories .category-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.products-categories .category-card .card-image-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.products-categories .category-card .card-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(193, 39, 45, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.products-categories .category-card .card-image-wrapper:hover::before {
  opacity: 1;
}
.products-categories .category-card .card-image-wrapper .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.products-categories .category-card .card-image-wrapper:hover .card-image {
  transform: scale(1.15);
  filter: brightness(1.1);
}
.products-categories .category-card .card-content {
  padding: 1.5rem;
}
.products-categories .category-card .category-icon {
  color: #C1272D;
  margin-bottom: 1rem;
}
.products-categories .category-card .category-icon svg {
  width: 3rem;
  height: 3rem;
  stroke: #C1272D;
  fill: none;
  stroke-width: 2;
}
.products-categories .category-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.75rem;
}
.products-categories .category-card .card-description {
  color: #6D6D6D;
  margin-bottom: 1rem;
}
.products-categories .category-card .subcategories {
  margin-bottom: 1.5rem;
}
.products-categories .category-card .subcategories .subcategories-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}
.products-categories .category-card .subcategories .subcategories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.products-categories .category-card .subcategories .subcategories-list .subcategory-badge {
  font-size: 0.75rem;
  background-color: #F5F5F5;
  color: #6D6D6D;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.products-categories .category-card .card-link {
  color: #C1272D;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.products-categories .category-card .card-link:hover {
  gap: 0.75rem;
}
.products-categories .category-card .card-link svg {
  width: 1rem;
  height: 1rem;
  stroke: #C1272D;
}
.products-categories .info-banner {
  margin-top: 2rem;
  text-align: center;
}
.products-categories .info-banner > div {
  display: inline-block;
  background-color: #FFC20E;
  color: #333333;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
}
.products-categories .info-banner > div p {
  font-weight: 600;
  margin: 0;
}

.products-services {
  padding: 5rem 0;
  background-color: #FFFFFF;
}
.products-services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .products-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products-services .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
  text-align: left;
}
.products-services .section-content {
  font-size: 1.125rem;
  color: #6D6D6D;
  margin-bottom: 2rem;
}
.products-services .services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.products-services .services-list .service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.products-services .services-list .service-item .service-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #C1272D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.products-services .services-list .service-item .service-icon svg {
  width: 1rem !important;
  height: 1rem !important;
  display: block !important;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.products-services .services-list .service-item span {
  color: #333333;
  font-size: 1.125rem;
}
.products-services .services-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products-services .services-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(193, 39, 45, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.products-services .services-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.products-services .services-image:hover::before {
  opacity: 1;
}
.products-services .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.products-services .services-image:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.products-rental {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.products-rental .rental-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .products-rental .rental-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products-rental .rental-image-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  order: 2;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 64rem) {
  .products-rental .rental-image-wrapper {
    order: 1;
  }
}
.products-rental .rental-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(193, 39, 45, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.products-rental .rental-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.products-rental .rental-image-wrapper:hover::before {
  opacity: 1;
}
.products-rental .rental-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.products-rental .rental-image-wrapper:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}
.products-rental .rental-content {
  order: 1;
}
@media (min-width: 64rem) {
  .products-rental .rental-content {
    order: 2;
  }
}
.products-rental .rental-icon {
  color: #C1272D;
  margin-bottom: 1rem;
}
.products-rental .rental-icon svg {
  width: 4rem;
  height: 4rem;
  stroke: #C1272D;
  fill: none;
  stroke-width: 2;
}
.products-rental .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
  text-align: left;
}
.products-rental .section-content {
  font-size: 1.125rem;
  color: #6D6D6D;
  margin-bottom: 1.5rem;
}
.products-rental .equipment-card {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.products-rental .equipment-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.products-rental .equipment-card .equipment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.products-rental .equipment-card .equipment-list .equipment-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.products-rental .equipment-card .equipment-list .equipment-item .equipment-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #C1272D;
  border-radius: 50%;
  flex-shrink: 0;
}
.products-rental .equipment-card .equipment-list .equipment-item span {
  color: #6D6D6D;
}

.products-cta {
  padding: 5rem 0;
  background-color: #C1272D;
}
.products-cta .cta-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .products-cta .cta-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .products-cta .cta-content {
    padding: 0 2rem;
  }
}
.products-cta .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.products-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 40rem) {
  .products-cta .cta-buttons {
    flex-direction: row;
  }
}

.quote-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.quote-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(51, 51, 51, 0.9), rgba(51, 51, 51, 0.7));
  z-index: 0;
}
.quote-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .quote-hero .hero-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .quote-hero .hero-content {
    padding: 0 2rem;
  }
}
.quote-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .quote-hero .hero-title {
    font-size: 3.75rem;
  }
}
.quote-hero .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto;
}

.quote-introduction {
  padding: 3rem 0;
  background-color: #FFFFFF;
}
.quote-introduction .section-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  font-size: 1.125rem;
  color: #6D6D6D;
}
@media (min-width: 48rem) {
  .quote-introduction .section-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .quote-introduction .section-content {
    padding: 0 2rem;
  }
}

.quote-form-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.quote-form-section .form-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 48rem) {
  .quote-form-section .form-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .quote-form-section .form-wrapper {
    padding: 0 2rem;
  }
}
.quote-form-section .quote-form {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
@media (min-width: 48rem) {
  .quote-form-section .quote-form {
    padding: 3rem;
  }
}
.quote-form-section .quote-form .wpcf7-form {
  margin: 0;
}
.quote-form-section .quote-form .wpcf7-form br {
  display: none;
}
.quote-form-section .quote-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.quote-form-section .quote-form .wpcf7-not-valid-tip {
  color: #C1272D;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.quote-form-section .quote-form .wpcf7-validation-errors,
.quote-form-section .quote-form .wpcf7-mail-sent-ok {
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}
.quote-form-section .quote-form .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.quote-form-section .quote-form .wpcf7-validation-errors {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.quote-form-section .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .quote-form-section .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.quote-form-section .form-group {
  margin-bottom: 1.5rem;
}
.quote-form-section .form-label {
  display: block;
  color: #333333;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.quote-form-section .form-input,
.quote-form-section .form-textarea,
.quote-form-section .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.quote-form-section .form-input:focus,
.quote-form-section .form-textarea:focus,
.quote-form-section .form-select:focus {
  outline: none;
  border-color: #C1272D;
  box-shadow: 0 0 0 2px rgba(193, 39, 45, 0.2);
}
.quote-form-section .form-textarea {
  resize: vertical;
  min-height: 150px;
}
.quote-form-section .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 3rem;
  appearance: none;
}
.quote-form-section .form-submit {
  width: 100%;
  background-color: #C1272D;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.quote-form-section .form-submit:hover {
  background-color: #A01F24;
}
.quote-form-section .form-submit:focus-visible {
  outline: 2px solid #C1272D;
  outline-offset: 2px;
}
.quote-form-section .form-submit svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #FFFFFF;
  fill: none;
}
.quote-form-section .form-message {
  text-align: center;
  font-size: 0.875rem;
  color: #6D6D6D;
  margin-top: 0.75rem;
}
.quote-form-section .form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #6D6D6D;
  font-size: 0.875rem;
}
.quote-form-section .form-privacy svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #6D6D6D;
  flex-shrink: 0;
}

.quote-contact {
  padding: 5rem 0;
  background-color: #FFFFFF;
}
.quote-contact .contact-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .quote-contact .contact-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .quote-contact .contact-wrapper {
    padding: 0 2rem;
  }
}
.quote-contact .section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
}
.quote-contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .quote-contact .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.quote-contact .contact-card {
  background-color: #F5F5F5;
  padding: 2rem;
  border-radius: 0.5rem;
}
.quote-contact .contact-card .contact-icon {
  width: 4rem;
  height: 4rem;
  background-color: #C1272D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.quote-contact .contact-card .contact-icon svg {
  width: 2rem;
  height: 2rem;
  color: #FFFFFF;
  stroke: #FFFFFF;
  fill: none;
}
.quote-contact .contact-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
.quote-contact .contact-card .contact-link {
  font-size: 1.5rem;
  color: #C1272D;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.quote-contact .contact-card .contact-link:hover {
  color: #A01F24;
}
.quote-contact .contact-card .contact-text {
  color: #6D6D6D;
}

.quote-cta {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.quote-cta .cta-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .quote-cta .cta-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .quote-cta .cta-wrapper {
    padding: 0 2rem;
  }
}
.quote-cta .section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}

.contact-hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.contact-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(51, 51, 51, 0.9), rgba(51, 51, 51, 0.7));
  z-index: 0;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 40rem) {
  .contact-hero-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 64rem) {
  .contact-hero-content {
    padding: 0 2rem;
  }
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .contact-hero-title {
    font-size: 3.75rem;
  }
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto;
}

.contact-info-section {
  padding: 5rem 0;
  background-color: #FFFFFF;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 48rem) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-info-card {
  background-color: #F5F5F5;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-info-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background-color: #C1272D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-info-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  fill: #FFFFFF;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.75rem;
}

.contact-info-link {
  font-size: 1.125rem;
  color: #C1272D;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info-link:hover {
  color: #A01F24;
}

.contact-info-link-email {
  color: #6D6D6D;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info-link-email:hover {
  color: #C1272D;
}

.contact-info-text {
  color: #6D6D6D;
  margin: 0;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-social-link:hover {
  transform: scale(1.1);
}

.contact-social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-schedule-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}

.contact-schedule-card {
  max-width: 64rem;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-schedule-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.contact-schedule-icon-wrapper div {
  width: 4rem;
  height: 4rem;
  background-color: #C1272D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-schedule-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: #FFFFFF;
}

.contact-schedule-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 0 auto;
}
@media (min-width: 48rem) {
  .contact-schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #F5F5F5;
  border-radius: 0.5rem;
}
@media (min-width: 48rem) {
  .contact-schedule-item.contact-schedule-item-full {
    grid-column: span 2;
  }
}

.contact-schedule-day {
  font-weight: 600;
  color: #333333;
  display: flex;
  align-items: center;
}
.contact-schedule-day svg {
  flex-shrink: 0;
}

.contact-schedule-hours {
  color: #6D6D6D;
}
.contact-schedule-hours.contact-schedule-hours-closed {
  color: #C1272D;
  font-weight: 600;
}

.contact-map-section {
  padding: 5rem 0;
  background-color: #FFFFFF;
}

.contact-map-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-map-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  height: 450px;
}

.contact-map-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.contact-map-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}

.contact-form-card {
  max-width: 64rem;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
}
@media (min-width: 48rem) {
  .contact-form-card {
    padding: 3rem;
  }
}

.contact-form-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-form-subtitle {
  text-align: center;
  color: #6D6D6D;
  margin-bottom: 2rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .contact-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form-group {
  margin-bottom: 1.5rem;
}

.contact-form-label {
  display: block;
  color: #333333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D1D1;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #C1272D;
  box-shadow: 0 0 0 2px rgba(193, 39, 45, 0.2);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
}

.contact-form-wrapper .wpcf7-form br {
  display: none;
}
.contact-form-wrapper .wpcf7-form .contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .contact-form-wrapper .wpcf7-form .contact-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-form-wrapper .wpcf7-form .contact-form-group {
  margin-bottom: 1.5rem;
}
.contact-form-wrapper .wpcf7-form .contact-form-label {
  display: block;
  color: #333333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-form-wrapper .wpcf7-form .contact-form-input,
.contact-form-wrapper .wpcf7-form .contact-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D1D1;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form-wrapper .wpcf7-form .contact-form-input:focus,
.contact-form-wrapper .wpcf7-form .contact-form-textarea:focus {
  outline: none;
  border-color: #C1272D;
  box-shadow: 0 0 0 2px rgba(193, 39, 45, 0.2);
}
.contact-form-wrapper .wpcf7-form .contact-form-textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form-wrapper .wpcf7-form .wpcf7-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
}
.contact-form-wrapper .wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
}
.contact-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
  color: #C1272D;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.contact-form-wrapper .wpcf7-form span.wpcf7-not-valid .contact-form-input,
.contact-form-wrapper .wpcf7-form span.wpcf7-not-valid .contact-form-textarea {
  border-color: #C1272D;
}

.contact-trust-section {
  padding: 5rem 0;
  background-color: #FFFFFF;
  text-align: center;
}

.contact-trust-badge {
  max-width: 64rem;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  background-color: #FFC20E;
  color: #333333;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 40rem) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.container {
  max-width: 80rem;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 48rem) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/*# sourceMappingURL=main.css.map */
