/* =================================================================
   DynoArc Logistics - Modern Bold Design Style CSS
   Complete stylesheet for all pages with mobile menu and cookie banner
   ================================================================= */

/* CSS RESET AND BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1A365D;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

strong {
  font-weight: 700;
  color: #1A365D;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #E67E22;
  color: #FFFFFF;
  border-color: #E67E22;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
  background: #D35400;
  border-color: #D35400;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1A365D;
  border-color: #1A365D;
  border-width: 3px;
}

.btn-secondary:hover {
  background: #1A365D;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* HEADER */
header {
  background: #FFFFFF;
  border-bottom: 4px solid #E67E22;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #1A365D;
  padding: 8px 12px;
  border-bottom: 3px solid transparent;
  letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
  color: #E67E22;
  border-bottom-color: #E67E22;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: #E67E22;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #D35400;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: #1A365D;
  z-index: 999;
  padding: 80px 30px 30px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E67E22;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border-left: 4px solid transparent;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  border-left-color: #E67E22;
  background: rgba(230, 126, 34, 0.2);
  transform: translateX(4px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(230, 126, 34, 0.05) 10px,
    rgba(230, 126, 34, 0.05) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  color: #F4F4F4;
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  padding: 16px 24px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  margin-top: 24px;
}

.trust-badge img {
  width: 24px;
  height: 24px;
}

.trust-badge span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
}

/* STATS SECTION */
.stats {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-top: 4px solid #E67E22;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.2);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #E67E22;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A365D;
  text-align: center;
  letter-spacing: 0.5px;
}

/* SERVICES OVERVIEW */
.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-overview h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1;
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border: 3px solid #E67E22;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.3);
  border-color: #1A365D;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 20px;
  color: #1A365D;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #E67E22;
  margin-top: auto;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* BENEFITS SECTION */
.benefits {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.benefits h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.benefit-item {
  flex: 1;
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-left: 4px solid #E67E22;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.benefit-item img {
  width: 50px;
  height: 50px;
}

.benefit-item h3 {
  font-size: 22px;
  color: #1A365D;
}

.benefit-item p {
  font-size: 15px;
  color: #555;
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
}

.testimonials h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
  color: #FFFFFF;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border-top: 4px solid #E67E22;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card .quote {
  font-size: 16px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card .author strong {
  font-size: 16px;
  font-weight: 700;
  color: #1A365D;
}

.testimonial-card .author span {
  font-size: 14px;
  color: #E67E22;
  font-weight: 600;
}

.testimonials .trust-badge {
  margin: 0 auto;
  max-width: 600px;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  margin-bottom: 60px;
  background: #E67E22;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(26, 54, 93, 0.05) 10px,
    rgba(26, 54, 93, 0.05) 20px
  );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 24px;
}

.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: #FFFFFF;
  color: #E67E22;
  border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
  background: #1A365D;
  color: #FFFFFF;
  border-color: #1A365D;
}

.trust-elements {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-elements span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  margin-bottom: 60px;
}

.breadcrumb {
  color: #F4F4F4;
  font-size: 14px;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #E67E22;
  font-weight: 600;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #F4F4F4;
  font-size: 18px;
  max-width: 800px;
}

/* SERVICE DETAIL */
.service-detail {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.service-detail.alt {
  background: #F4F4F4;
}

.service-block {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.service-icon {
  flex: 0 0 200px;
}

.service-icon img {
  width: 100%;
  height: auto;
}

.service-content {
  flex: 1;
  min-width: 300px;
}

.service-content h2 {
  font-size: 36px;
  margin-bottom: 8px;
}

.tagline {
  font-size: 18px;
  color: #E67E22;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-content .price {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  background: #E67E22;
  padding: 12px 24px;
  border-radius: 4px;
  margin: 24px 0;
}

.feature-list {
  margin: 24px 0;
  padding-left: 24px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.feature-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 12px;
}

.ideal-for {
  background: #F4F4F4;
  padding: 16px 20px;
  border-left: 4px solid #E67E22;
  margin: 24px 0;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.text-section ul {
  margin: 20px 0;
  padding-left: 24px;
}

.text-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
}

.text-section ul li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 12px;
}

/* STATS ROW */
.stats-row {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.stats-row .stat {
  flex: 1;
  min-width: 200px;
  background: #1A365D;
  color: #FFFFFF;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
}

.stats-row .stat strong {
  display: block;
  font-size: 32px;
  color: #E67E22;
  margin-bottom: 8px;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.milestone {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 3px solid #E67E22;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.milestone .year {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #E67E22;
  margin-bottom: 12px;
}

.milestone p {
  font-size: 14px;
  font-weight: 700;
  color: #1A365D;
  line-height: 1.4;
}

/* MISSION VISION */
.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.mission-vision-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.mission-block,
.vision-block {
  flex: 1;
  min-width: 300px;
  padding: 40px 32px;
  background: #1A365D;
  color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.mission-block h2,
.vision-block h2 {
  color: #E67E22;
  margin-bottom: 16px;
}

.mission-block p,
.vision-block p {
  color: #F4F4F4;
  line-height: 1.8;
}

.values {
  background: #F4F4F4;
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
}

.values h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values-list li {
  font-size: 16px;
  padding-left: 32px;
  position: relative;
}

.values-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 14px;
}

/* TEAM SECTION */
.team-section {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
  text-align: center;
}

.team-section h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.team-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.team-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-box {
  background: #FFFFFF;
  padding: 32px 40px;
  border-radius: 4px;
  border-top: 4px solid #E67E22;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 200px;
}

.stat-box strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  color: #E67E22;
  margin-bottom: 8px;
}

.stat-box span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A365D;
  letter-spacing: 0.5px;
}

/* NUMBERS SECTION */
.numbers-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.numbers-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

.numbers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.number-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 32px 24px;
  background: #1A365D;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.number-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.number-item .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #E67E22;
  margin-bottom: 12px;
  line-height: 1;
}

.number-item .label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

/* LOCATION SECTION */
.location-section {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.location-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.location-section > p {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.location-info {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.location-info p {
  font-size: 16px;
  margin-bottom: 12px;
}

.location-advantages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-advantages li {
  padding: 16px 20px;
  background: #FFFFFF;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* VEHICLE CATEGORY */
.vehicle-category {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.vehicle-category.alt {
  background: #F4F4F4;
}

.category-block {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.category-icon {
  flex: 0 0 200px;
}

.category-icon img {
  width: 100%;
  height: auto;
}

.category-content {
  flex: 1;
  min-width: 300px;
}

.category-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.specs {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.specs span {
  background: #E67E22;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.features li {
  padding: 12px 16px;
  background: #F4F4F4;
  border-left: 4px solid #E67E22;
  font-weight: 600;
  font-size: 15px;
}

/* FLEET TECHNOLOGY */
.fleet-technology {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.fleet-technology h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.fleet-technology > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.tech-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-left: 4px solid #E67E22;
}

.tech-list li img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.tech-list li strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

/* DRIVERS SECTION */
.drivers-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.drivers-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.drivers-section > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.driver-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.driver-stats .stat {
  background: #1A365D;
  color: #FFFFFF;
  padding: 24px 32px;
  border-radius: 4px;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.driver-stats .stat strong {
  display: block;
  font-size: 32px;
  color: #E67E22;
  margin-bottom: 8px;
}

.qualifications {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.qualifications li {
  padding: 16px 20px;
  background: #F4F4F4;
  border-left: 4px solid #E67E22;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
}

/* TRACKING FORM */
.tracking-form-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.tracking-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #F4F4F4;
  padding: 48px 40px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-top: 4px solid #E67E22;
}

.tracking-form-wrapper h2 {
  text-align: center;
  margin-bottom: 16px;
}

.instruction {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
}

.tracking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  font-size: 14px;
  color: #1A365D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tracking-input {
  padding: 16px;
  border: 3px solid #1A365D;
  border-radius: 4px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
}

.tracking-input:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.2);
}

.help-text {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 16px;
}

.help-text a {
  color: #E67E22;
  font-weight: 700;
}

/* TRACKING FEATURES */
.tracking-features {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.tracking-features h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-item {
  flex: 1;
  min-width: 240px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 4px solid #E67E22;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-item img {
  width: 60px;
  height: 60px;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: #555;
}

/* TRACKING STATUSES */
.tracking-statuses {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.tracking-statuses h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.status-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #F4F4F4;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
}

.status-icon {
  width: 50px;
  height: 50px;
  background: #E67E22;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.status-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.status-content p {
  font-size: 15px;
  color: #555;
}

/* NOTIFICATION SYSTEM */
.notification-system {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.notification-system h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.notification-system > p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.notification-list li {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-left: 4px solid #E67E22;
}

.notification-list li img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.notification-list li strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

/* MAP SECTION */
.tracking-map-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.tracking-map-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.tracking-map-section > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.map-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.map-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F4F4F4;
  padding: 16px 24px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  min-width: 250px;
}

.map-feature img {
  width: 40px;
  height: 40px;
}

.map-feature span {
  font-weight: 700;
  font-size: 14px;
}

/* FAQ SECTION */
.faq-section {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.faq-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-left: 4px solid #E67E22;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A365D;
}

.faq-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* CONTACT METHODS */
.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-methods h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-method {
  flex: 1;
  min-width: 300px;
  background: #F4F4F4;
  padding: 40px 32px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-top: 4px solid #E67E22;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-method img {
  width: 60px;
  height: 60px;
}

.contact-method h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 18px;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 8px;
}

.contact-value a {
  color: #E67E22;
}

/* CONTACT FORM */
.contact-form-section {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.contact-form-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-top: 4px solid #E67E22;
}

.form-note {
  background: #FFF3CD;
  padding: 16px;
  border-left: 4px solid #E67E22;
  margin-bottom: 24px;
  font-size: 14px;
  color: #856404;
}

.form-fields-display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 700;
  font-size: 14px;
  color: #1A365D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-group input,
.field-group select,
.field-group textarea {
  padding: 14px;
  border: 2px solid #DDD;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.field-group textarea {
  min-height: 120px;
  resize: vertical;
}

.field-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.field-group.checkbox input {
  width: 20px;
  height: 20px;
}

.field-group.checkbox label {
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
}

/* OFFICE INFO */
.office-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.office-info h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
}

.office-details {
  max-width: 800px;
  margin: 0 auto;
  background: #F4F4F4;
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
}

.office-details p {
  font-size: 16px;
  margin-bottom: 16px;
}

.office-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.office-features li {
  padding: 12px 16px;
  background: #FFFFFF;
  border-left: 4px solid #E67E22;
  font-weight: 700;
  border-radius: 4px;
}

/* FAQ CONTACT */
.faq-contact {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.faq-contact h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 3px solid #E67E22;
}

.legal-content h3 {
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 32px;
}

.legal-content ul li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  padding-left: 16px;
}

.legal-content ul li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 10px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 24px;
}

.success-icon img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.subtitle {
  color: #F4F4F4;
  font-size: 20px;
}

/* CONFIRMATION SECTION */
.confirmation-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.confirmation-box {
  max-width: 800px;
  margin: 0 auto;
  background: #F4F4F4;
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.confirmation-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.email-note {
  background: #E8F5E9;
  padding: 16px;
  border-left: 4px solid #4CAF50;
  border-radius: 4px;
  font-weight: 700;
}

/* NEXT STEPS */
.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.next-steps h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 4px solid #E67E22;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #E67E22;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: #555;
}

.timeline {
  text-align: center;
  font-size: 18px;
  color: #E67E22;
  font-weight: 700;
}

/* WHILE WAITING */
.while-waiting {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.while-waiting h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.while-waiting > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.suggestions-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.suggestion-card {
  flex: 1;
  min-width: 250px;
  background: #F4F4F4;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 4px solid #E67E22;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suggestion-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.suggestion-card p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
}

/* TESTIMONIALS SECTION (Thank You) */
.testimonials-section {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #F4F4F4;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #E67E22;
  margin-top: 32px;
}

/* GUARANTEE SECTION */
.guarantee-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.guarantee-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.guarantee-section h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 32px;
  color: #E67E22;
}

.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-list li {
  padding: 20px 24px;
  background: #F4F4F4;
  border-left: 4px solid #E67E22;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.availability {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #555;
}

/* FOOTER */
footer {
  background: #1A365D;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-top: 4px solid #E67E22;
}

.footer-content {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.footer-col p {
  color: #F4F4F4;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #E67E22;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: #F4F4F4;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #E67E22;
  transform: translateX(4px);
}

.footer-col a {
  color: #E67E22;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: #F4F4F4;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A365D;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: #E67E22;
  color: #FFFFFF;
  border: 2px solid #E67E22;
}

.cookie-btn-accept:hover {
  background: #D35400;
  border-color: #D35400;
}

.cookie-btn-reject {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #E67E22;
  border: 2px solid #E67E22;
}

.cookie-btn-settings:hover {
  background: rgba(230, 126, 34, 0.1);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border-top: 4px solid #E67E22;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #E67E22;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #D35400;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F4F4F4;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #CCC;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #E67E22;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav,
  .cta-buttons {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  /* Services */
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    min-width: 100%;
  }
  
  /* Benefits */
  .benefits-grid {
    flex-direction: column;
  }
  
  .benefit-item {
    min-width: 100%;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
  
  /* Service Detail */
  .service-block,
  .category-block {
    flex-direction: column;
  }
  
  .service-icon,
  .category-icon {
    flex: 0 0 150px;
    margin: 0 auto;
  }
  
  /* Contact */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-method {
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    min-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Forms */
  .form-wrapper,
  .tracking-form-wrapper {
    padding: 32px 24px;
  }
  
  /* CTA Section */
  .cta-section h2 {
    font-size: 32px;
  }
  
  .trust-elements {
    flex-direction: column;
  }
  
  /* Page Hero */
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Numbers Grid */
  .numbers-grid {
    flex-direction: column;
  }
  
  .number-item {
    min-width: 100%;
  }
  
  /* Steps Grid */
  .steps-grid {
    flex-direction: column;
  }
  
  .step {
    min-width: 100%;
  }
  
  /* Suggestions Grid */
  .suggestions-grid {
    flex-direction: column;
  }
  
  .suggestion-card {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .cta-section h2 {
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .service-card .price {
    font-size: 18px;
  }
}