/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Inter-Light.woff2') format('woff2')
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-Regular.woff2') format('woff2')
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter-Medium.woff2') format('woff2')
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2')
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter-Bold.woff2') format('woff2')
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Inter-ExtraBold.woff2') format('woff2')
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw
}
body {
  font-family: 'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
  overflow-x: hidden;
  max-width: 100vw
}
:root {
  --rim-blue: #1a1a2e;
  --rim-red: #CC0000;
  --rim-red-light: #e4032e;
  --text-dark: #212529;
  --text-light: #495057;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.2)
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}
/* Header */
.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000
}
.navbar {
  padding: 1rem 0
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center
}
.nav-brand {
  display: flex;
  align-items: center
}
.logo {
  width: 300px;
  height: auto;
  max-height: 60px;
  object-fit: contain
}
.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center
}
.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding: 0.5rem 0
}
.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--rim-red);
  transition: width 0.2s ease
}
.nav-link:hover {
  color: var(--rim-red)
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}
.nav-link.active {
  color: var(--rim-red)
}
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 0.5rem
}
.bar {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 2px
}
/* Hero */
.hero {
  padding: 120px 0 100px;
  background: var(--rim-blue);
  color: white;
  overflow: hidden;
  max-width: 100vw
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}
.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.15
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}
.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
  color: inherit
}
.hero-button.primary {
  background: white;
  color: var(--rim-red)
}
.hero-button.primary:hover {
  opacity: 0.9
}
.hero-button.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5)
}
.hero-button.secondary:hover {
  border-color: white;
  opacity: 0.9
}
.hero-visual {
  display: flex;
  justify-content: center
}
.hero-truck {
  width: 100%;
  max-width: 500px;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 12px
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center
}
.hero-stats .stat-item {
  text-align: center;
  color: white;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex: 1;
  transition: transform 0.3s ease,background 0.3s ease
}
.hero-stats .stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15)
}
.hero-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em
}
.hero-stats .stat-label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem
}
.page-header {
  padding: 80px 0 60px;
  background: var(--rim-blue);
  color: white;
  text-align: center
}
.page-header-title {
  padding-top: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2
}
.page-header-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6
}
/* Sections */
section {
  padding: 80px 0;
  overflow: hidden
}
.section-header {
  text-align: center;
  margin-bottom: 3rem
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.6
}
.section-subtitle a {
  color: var(--rim-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease
}
.section-subtitle a:hover {
  opacity: 0.7
}
/* About */
.about {
  background: var(--bg-light)
}
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color)
}
.about-stat {
  text-align: center;
  flex: 1
}
.about-stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rim-red);
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums
}
.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px
}
.features-list {
  margin-top: 1.5rem
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}
.feature-item i {
  color: var(--rim-red);
  font-size: 1.25rem;
  flex-shrink: 0
}
.feature-item:last-child {
  border-bottom: none
}
.image-container {
  border-radius: 12px;
  overflow: hidden
}
.about-image-main {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px
}
/* Advantages */
.advantages {
  background: var(--bg-white);
  position: relative
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem
}
.advantage-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease
}
.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rim-red)
}
.advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--rim-red), var(--rim-red-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center
}
.advantage-icon i {
  font-size: 1.5rem;
  color: white
}
.advantage-item:hover .advantage-icon {
  transform: scale(1.05)
}
.advantage-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem
}
.advantage-item:hover .advantage-title {
  color: var(--rim-red)
}
.advantage-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem
}
/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s ease
}
.service-card:hover {
  border-color: var(--rim-red)
}
.service-icon-simple {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(204, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem
}
.service-icon-simple i {
  font-size: 1.25rem;
  color: var(--rim-red)
}
.service-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem
}
.service-card:hover .service-title {
  color: var(--rim-red)
}
.service-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem
}
/* Directions */
.directions {
  background: var(--bg-light)
}
.directions-list {
  max-width: 900px;
  margin: 0 auto
}
.direction-row {
  display: grid;
  grid-template-columns: 260px 1fr 100px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color)
}
.direction-row:last-child {
  border-bottom: none
}
.direction-route {
  display: flex;
  align-items: center;
  gap: 0.75rem
}
.direction-from,
.direction-to {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
  white-space: nowrap
}
.direction-route i {
  color: var(--text-muted);
  font-size: 0.9rem
}
.direction-details p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5
}
.direction-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rim-red);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap
}
.direction-time i {
  font-size: 0.85rem
}
/* Process */
.process-steps {
  max-width: 700px;
  margin: 0 auto
}
.process-step-simple {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color)
}
.process-step-simple:last-child {
  border-bottom: none
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rim-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0
}
.step-info {
  flex: 1
}
.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem
}
.step-description {
  color: var(--text-light);
  line-height: 1.5;
  font-size: 0.95rem
}
/* CTA */
.cta {
  background: var(--rim-blue);
  color: white;
  text-align: center;
  padding: 80px 0
}
.cta-content {
  max-width: 500px;
  margin: 0 auto
}
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem
}
.cta-subtitle {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.8
}
.cta-button {
  display: inline-block;
  background: white;
  color: var(--rim-red);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease
}
.cta-button:hover {
  opacity: 0.9
}
/* FAQ */
.faq {
  background: var(--bg-light)
}
.faq-list {
  max-width: 800px;
  margin: 0 auto
}
.faq-item {
  border-bottom: 1px solid var(--border-color)
}
.faq-item:first-child {
  border-top: 1px solid var(--border-color)
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 1rem;
  transition: color 0.2s ease
}
.faq-question:hover {
  color: var(--rim-red)
}
.faq-icon {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s ease,color 0.3s ease;
  flex-shrink: 0
}
.faq-item.active .faq-question {
  color: var(--rim-red)
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--rim-red)
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease,padding 0.3s ease
}
.faq-answer a {
  color: var(--rim-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease
}
.faq-answer a:hover {
  opacity: 0.7
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  padding-bottom: 1.25rem
}
.faq-item.active .faq-answer {
  max-height: 300px
}
/* Content Section (inner pages) */
.content-section {
  padding: 5rem 0;
  background: #ffffff
}
.content-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8
}
.content-text h2 {
  color: var(--rim-blue);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center
}
.content-text h3 {
  color: var(--rim-blue);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2.5rem 0 1.5rem 0
}
.content-text p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify
}
.content-text ul {
  margin: 1.5rem 0;
  padding-left: 2rem
}
.content-text li {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.8rem
}
.content-text li::marker {
  color: var(--rim-blue);
  font-weight: bold
}
.content-text a {
  color: var(--rim-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease
}
.content-text a:hover {
  opacity: 0.7
}
/* Related Services */
.related-services {
  padding: 40px 0;
  border-top: 1px solid var(--border-color)
}
.related-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  text-align: center
}
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center
}
.related-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s ease,color 0.2s ease
}
.related-card:hover {
  border-color: var(--rim-red);
  color: var(--rim-red)
}
.related-card i {
  font-size: 1rem;
  color: var(--rim-red)
}
/* Footer */
.footer {
  background: var(--rim-blue);
  color: white;
  padding: 60px 0 30px
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  margin-bottom: 3rem
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}
.footer-logo {
  height: auto;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  margin-bottom: 1rem
}
.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  align-items: start
}
.footer-column {
  display: flex;
  flex-direction: column
}
.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem
}
.footer-list {
  list-style: none
}
.footer-list li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem
}
.footer-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease
}
.footer-list a:hover {
  color: white
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem
}
.flag-image {
  display: inline-block;
  width: 20px;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 2px;
  vertical-align: middle;
  object-fit: cover
}
/* Sticky Social Buttons */
.sticky-social-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px
}
.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.2s ease
}
.social-button:hover {
  opacity: 0.85
}
.social-button i {
  font-size: 22px;
  color: white
}
.social-button.whatsapp {
  background: #25D366
}
.social-button.telegram {
  background: #0088CC
}
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1160px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 50px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    gap: 1rem;
    z-index: 999
  }
  .nav-menu.active {
    left: 0
  }
  .nav-toggle {
    display: flex
  }
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0
  }
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
  }
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }
  .logo {
    width: 250px;
    max-height: 50px
  }
}
@media (max-width: 970px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px
  }
  .hero-text {
    width: 100%
  }
  .hero-visual {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center
  }
  .hero-truck {
    width: 100%;
    max-width: 350px;
    display: block
  }
  .hero-cta {
    justify-content: center
  }
  .hero-stats {
    justify-content: center
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
  }
  .service-card {
    padding: 1.5rem
  }
  .service-title {
    font-size: 1rem
  }
  .direction-row {
    grid-template-columns: 1fr;
    gap: 0.5rem
  }
  .direction-time {
    justify-content: flex-start
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px
  }
  .hero-title {
    font-size: 2.25rem
  }
  .hero-stats .stat-item {
    min-width: 100px
  }
  .page-header {
    padding: 60px 0 40px
  }
  .page-header-title {
    font-size: 2rem
  }
  section {
    padding: 60px 0
  }
  .section-title {
    font-size: 1.75rem
  }
  .about-stats {
    gap: 1rem
  }
  .cta-title {
    font-size: 1.75rem
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .faq-question {
    font-size: 0.95rem
  }
  .faq-answer p {
    font-size: 0.9rem
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .footer-brand {
    align-items: center
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
  }
  .sticky-social-buttons {
    bottom: 20px;
    right: 20px
  }
  .social-button {
    width: 45px;
    height: 45px
  }
  .social-button i {
    font-size: 20px
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px
  }
  .hero {
    padding: 80px 0 40px
  }
  .hero-title {
    font-size: 1.875rem
  }
  .hero-subtitle {
    font-size: 1rem
  }
  .hero-stats .stat-number {
    font-size: 1.25rem
  }
  .hero-stats .stat-item {
    padding: 0.75rem 0.5rem
  }
  .page-header {
    padding: 50px 0 30px
  }
  .page-header-title {
    font-size: 1.75rem
  }
  section {
    padding: 50px 0
  }
  .section-title {
    font-size: 1.5rem
  }
  .faq-question {
    font-size: 0.9rem;
    padding: 1rem 0
  }
  .faq-answer p {
    font-size: 0.85rem;
    padding-bottom: 1rem
  }
  .services-grid {
    grid-template-columns: 1fr
  }
  .advantages-grid {
    grid-template-columns: 1fr
  }
  .about-stats {
    flex-direction: column;
    gap: 1rem
  }
  .about-stat {
    text-align: left
  }
  .process-steps {
    max-width: 100%
  }
  .footer {
    padding: 40px 0 20px
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.25rem
  }
  .logo {
    width: 200px;
    max-height: 45px
  }
  .sticky-social-buttons {
    bottom: 15px;
    right: 15px
  }
  .social-button {
    width: 42px;
    height: 42px
  }
  .social-button i {
    font-size: 18px
  }
}
@media (max-width: 400px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    min-width: 320px
  }
  .hero-title {
    font-size: 1.625rem
  }
  .page-header-title {
    font-size: 1.5rem
  }
  section {
    padding: 40px 0
  }
  .navbar {
    padding: 0.5rem 0
  }
  .service-card {
    padding: 1.25rem
  }
  .cta-title {
    font-size: 1.5rem
  }
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem
  }
}
/*# sourceMappingURL=styles.min.1778505257467.css.map */
