/* Base Styles */
:root {
  --primary-color: #dc2626;
  --primary-hover: #b91c1c;
  --secondary-color: #1e293b;
  --text-color: #1e293b;
  --text-light: #475569; /* Darkened from #64748b for better contrast */
  --light-gray: #f1f5f9;
  --mid-gray: #e2e8f0;
  --dark-gray: #475569;
  --white: #ffffff;
  --body-bg: #ffffff;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--body-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--primary-hover);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
  text-align: center;
  line-height: 1.5;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

.btn-light {
  background-color: var(--white);
  color: var(--text-color);
}

.btn-light:hover {
  background-color: var(--light-gray);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.w-full {
  width: 100%;
}

/* Call Button */
.call-button {
  gap: 0.5rem;
  font-weight: 600;
}

/* Header Styles */
.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
}

.logo h1, .logo .logo-text {
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: bold;
}

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--text-color);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  width: 2rem;
  height: 1.5rem;
  border: 0;
  background: transparent;
  gap: 0.3rem;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 0.2rem;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 0.1rem;
  transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: var(--light-gray);
  background-image: url('/images/atlanta-ga-towing.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.3) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.hero-features .icon-check {
  color: var(--success-color);
}

/* Trust Indicators Section */
.trust-indicators {
  padding: 3rem 0;
  background-color: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background-color: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--light-gray);
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.trust-indicators .card .card-content {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.trust-indicators .card h3, .trust-indicators .card .feature-title {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.trust-indicators .card p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 4rem 0;
  background-color: var(--light-gray);
  text-align: center;
}

.section-description {
  max-width: 768px;
  margin: 0 auto 2rem;
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 500;
}

.why-choose-us .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: var(--white);
}

.why-choose-us .icon-large {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services {
  padding: 4rem 0;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card a {
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .service-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  border-radius: 0.5rem;
  color: var(--primary-color);
  font-size: 1.75rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--primary-color);
  gap: 0.5rem;
}

.view-all-link {
  margin-top: 2rem;
}

/* Service Areas Section */
.service-areas {
  padding: 4rem 0;
  background-color: var(--light-gray);
  text-align: center;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.location-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location-card a {
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.location-card .location-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 0.5rem;
  color: var(--primary-color);
  font-size: 1.75rem;
}

.location-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.location-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Extended Service Areas */
.extended-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.extended-areas-list {
  list-style: none;
  padding: 0;
  columns: 2;
}

.extended-areas-list li {
  margin-bottom: 0.5rem;
}

/* Enhanced Content Section */
.enhanced-content {
  padding: 4rem 0;
  background-color: var(--white);
  text-align: left;
}

.enhanced-content h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--secondary-color);
}

.enhanced-content .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.enhanced-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-color);
}

.enhanced-content h3 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.enhanced-content .feature-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.enhanced-content .feature-list li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* CTA Section */
.cta {
  padding: 4rem 0;
  background-color: var(--secondary-color);
  color: var(--white);
}

.cta-card {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.cta-card h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-card p {
  margin-bottom: 2rem;
  color: var(--mid-gray);
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h3, .footer-col .footer-heading {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-col p {
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 500;
  gap: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--mid-gray);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--mid-gray);
}

/* Contact Page */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form, .contact-info {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease-in-out;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Location Pages */
.location-hero {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.breadcrumbs {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-color);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.location-subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  max-width: 768px;
  font-weight: 500;
}

.location-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
}

.location-description h2 {
  margin-bottom: 1.5rem;
}

.location-description p {
  margin-bottom: 1.5rem;
}

.location-description h3 {
  margin: 2rem 0 1rem;
}

.location-highlights {
  list-style: none;
  padding: 0;
}

.location-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.location-highlights .icon-check {
  color: var(--primary-color);
  margin-top: 0.3rem;
}

.location-highlights-card .card {
  height: 100%;
}

.location-highlights-card ul {
  list-style: none;
  padding: 0;
}

.location-highlights-card li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-highlights-card h4 {
  margin-bottom: 0.5rem;
}

.location-highlights-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Service Pages */
.service-hero {
  padding: 4rem 0;
  background-color: var(--light-gray);
  background-image: url('/images/atlanta-towing.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.3) 100%);
  z-index: 1;
}

.service-subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  max-width: 768px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.service-hero .breadcrumbs,
.service-hero h1,
.service-hero .btn {
  position: relative;
  z-index: 2;
}

.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
}

.service-details h2 {
  margin-bottom: 1.5rem;
}

.service-details p {
  margin-bottom: 1.5rem;
}

.service-details h3 {
  margin: 2rem 0 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-features .icon-check {
  color: var(--primary-color);
  margin-top: 0.3rem;
}

.service-highlights-card .card {
  height: 100%;
}

.service-highlights-card ul {
  list-style: none;
  padding: 0;
}

.service-highlights-card li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cta-box {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cta-box h4 {
  margin-bottom: 1rem;
}

/* Landmarks Section */
.landmarks {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.landmarks-grid .card {
  background-color: var(--white);
}

.landmarks-grid h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.landmarks-grid ul {
  list-style: none;
  padding: 0;
}

.landmarks-grid li {
  margin-bottom: 0.5rem;
}

/* Zip Codes Section */
.zip-codes {
  padding: 4rem 0;
  text-align: center;
}

.zip-codes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.zip-codes-list span {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--light-gray);
  border-radius: 0.375rem;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-light);
}

/* Service Areas Covered */
.service-areas-covered {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.areas-list {
  list-style: none;
  padding: 0;
}

.areas-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.areas-list li:last-child {
  border-bottom: none;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 1.5rem 1.5rem 0;
  text-align: center;
}

.modal-body {
  padding: 1.5rem;
}

.modal-title {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.modal-description {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.modal-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.modal-footer p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Utility Classes */
.mb-8 {
  margin-bottom: 2rem;
}

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

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

.mt-12 {
  margin-top: 3rem;
}

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

/* Mobile Call Button */
.mobile-call-button {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 300px;
  padding: 1rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.mobile-call-button span {
  margin-right: 0.5rem;
}

.mobile-call-button.hidden {
  opacity: 0;
  transform: translate(-50%, 100px);
  pointer-events: none;
}

/* Icons */
[class^="icon-"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-phone:before {
  content: "📞";
}

.icon-check:before {
  content: "✓";
}

.icon-map:before {
  content: "🗺️";
}

.icon-clock:before {
  content: "🕒";
}

.icon-shield:before {
  content: "🛡️";
}

.icon-dollar:before {
  content: "💲";
}

.icon-star:before {
  content: "⭐";
}

.icon-tow-truck:before {
  content: "🚚";
}

.icon-wrench:before {
  content: "🔧";
}

.icon-truck:before {
  content: "🚛";
}

.icon-map-pin:before {
  content: "📍";
}

.icon-route:before {
  content: "🛣️";
}

.icon-motorcycle:before {
  content: "🏍️";
}

.icon-arrow-right:before {
  content: "→";
}

.icon-battery:before {
  content: "🔋";
}

.icon-zap:before {
  content: "⚡";
}

.icon-tool:before {
  content: "🔨";
}

.icon-droplet:before {
  content: "💧";
}

.icon-home:before {
  content: "🏠";
}

.icon-trash:before {
  content: "🗑️";
}

.icon-anchor:before {
  content: "⚓";
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .cards-grid, .services-grid, .locations-grid, .landmarks-grid, .extended-areas, .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .location-content, .service-content {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: all 0.3s ease-in-out;
  }
  
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .hero, .service-hero {
    padding: 3rem 0;
    background-position: right center;
  }
  
  .hero::before, .service-hero::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 65%, rgba(255,255,255,0.6) 100%);
  }
  
  .hero-content, .service-subtitle {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }
  
  .hero h1, .service-hero h1 {
    font-size: 2rem;
    position: relative;
    z-index: 2;
  }
  
  .contact-page, .footer-grid, .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .cards-grid, .services-grid, .locations-grid, .landmarks-grid, .extended-areas, .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .extended-areas-list {
    columns: 1;
  }
  
  .site-header .call-button {
    display: none;
  }
  
  .mobile-call-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero, .service-hero {
    background-position: 75% center;
  }
  
  .hero::before, .service-hero::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 75%, rgba(255,255,255,0.7) 100%);
  }
  
  .hero h1, .service-hero h1 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle, .service-subtitle {
    font-size: 1.125rem;
  }
  
  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}
/* Section Title Styles */
.section-title,
section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  text-align: center;
}
