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

:root {
  /* Primary Colors */
  --primary: #0f84b4;
  --primary-dark: #0a5a82;
  --primary-light: #1a9ed4;

  /* Neutrals */
  --dark: #1a1a1a;
  --dark-gray: #2a2a2a;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;

  /* Accent */
  --accent: #FF0000;
  --accent-light: #FFA07A;

  /* Text */
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
}

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

/* Navigation */
.navbar {
  background-color: #ffffff;
  color: var(--text-light);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-brand h2 {
  font-size: 1.5rem;
  font-weight: 700;
  animation: slideInDown 0.6s ease-out;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color:#0f84b4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.cta-link {
  background-color: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-links a.cta-link:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
}

.logo-image {
  height: 100px;
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 4rem;
  margin-top: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: slideInLeft 0.8s ease-out;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-image {
  animation: slideInRight 0.8s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 6rem 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.about-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  animation: fadeInUp 0.6s ease-out;
}

.section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.section p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.section-note {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--gray);
}

/* Benefits Section */
.benefits-section {
  background-color: var(--light-gray);
}

.benefits-section .btn {
  margin-top: 1.5rem;
}

/* Services Section */
.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.15);
  border-color: var(--primary);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.service-card p {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

/* Service Area Section */
.service-area-section {
  background-color: var(--light-gray);
}

.service-area-image {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.service-area-image img {
  width: 100%;
  height: auto;
  display: block;
  animation: fadeIn 0.8s ease-out;
}

/* Scrap Types Section */
.scrap-types-section {
  background-color: var(--white);
}

.scrap-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.type-item {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.type-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.3);
}

.type-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.type-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* How It Works Section */
.how-it-works-section {
  background-color: var(--light-gray);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

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

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card h3 {
  text-align: center;
}

.step-card p {
  text-align: center;
}

/* Environmental Section */
.environmental-section {
  background-color: var(--white);
}

.environmental-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.environmental-text {
  animation: slideInLeft 0.8s ease-out;
}

.environmental-image {
  animation: slideInRight 0.8s ease-out;
}

.environmental-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.2);
}

/* Demolition Section */
.demolition-section {
  background-color: var(--light-gray);
}

.demolition-image {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.demolition-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Industries Section */
.industries-section {
  background-color: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.industry-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  border-top: 4px solid var(--primary);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.15);
  background: #f0f9ff;
}

.industry-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.industry-card p {
  color: var(--text-secondary);
}

/* Why Sell Section */
.why-sell-section {
  background-color: var(--light-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.benefit-item h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-light);
}

.cta-section h2 {
  color: var(--text-light);
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.cta-section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.quote-form {
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-form input,
.quote-form textarea {
  padding: 0.875rem;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.contact-info {
  animation: slideInRight 0.8s ease-out 0.4s both;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

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

.contact-info p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.contact-info a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* About Page Sections */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-section.alternate .about-content {
  grid-template-columns: 1fr 1fr;
}

.about-text {
  animation: fadeInUp 0.8s ease-out;
}

.about-image {
  animation: fadeInUp 0.8s ease-out;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.2);
}

.about-section.alternate {
  background-color: var(--light-gray);
}

/* Offerings Section */
.offerings-section {
  background-color: var(--white);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.offering-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid var(--primary);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.15);
}

.offering-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offering-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Why Choose Section */
.why-choose-section {
  background-color: var(--light-gray);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.why-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.why-item h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Sustainability Section */
.sustainability-section {
  background-color: var(--white);
}

.sustainability-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sustainability-text {
  animation: slideInLeft 0.8s ease-out;
}

.sustainability-image {
  animation: slideInRight 0.8s ease-out;
}

.sustainability-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.2);
}

/* Commitment Section */
.commitment-section {
  background-color: var(--light-gray);
}

.commitment-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.commitment-item {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
  transition: all 0.3s ease;
}

.commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.3);
}

.commitment-item h3 {
  color: var(--text-light);
  font-size: 1.25rem;
  margin: 0;
}

.commitment-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Get Started Section */
.get-started-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  text-align: center;
}

.get-started-section h2 {
  color: var(--text-light);
}

.get-started-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--text-light);
  padding: 3rem 0 1rem 0;
}
.footer-logo-image {
  height: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 4rem 0;
  margin-top: 0;
}

.contact-hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: slideInDown 0.8s ease-out;
}

.contact-hero .hero-text p {
  font-size: 1.25rem;
  opacity: 0.95;
  animation: slideInDown 0.8s ease-out 0.2s both;
  max-width: 600px;
  margin: 0 auto;
}

/* Added contact section styling for form and map layout */
.contact-section {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form-wrapper {
  animation: slideInLeft 0.8s ease-out;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 132, 180, 0.1);
}

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

/* Added map wrapper styling */
.map-wrapper {
  animation: slideInRight 0.8s ease-out;
}

.map-wrapper h2 {
  margin-bottom: 1.5rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.15);
  margin-bottom: 1.5rem;
}

.location-details {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.location-details h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.location-details p {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.location-details a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.location-details a:hover {
  color: var(--primary-dark);
}

/* Added quick contact methods section */
.quick-contact-section {
  background-color: var(--light-gray);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.contact-method h3 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.contact-method-highlight {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-method-highlight a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method-highlight a:hover {
  color: var(--accent);
}

.contact-method p {
  margin: 0;
  color: var(--text-secondary);
}

/* Added FAQ section styling */
.faq-section {
  background-color: var(--white);
}

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

.faq-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 132, 180, 0.15);
}

.faq-item h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content,
  .services-grid,
  .about-content,
  .cta-content,
  .environmental-content,
  .sustainability-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .section {
    padding: 2rem 0;
  }

  .services-grid,
  .scrap-types-grid,
  .steps-grid,
  .industries-grid,
  .benefits-grid,
  .contact-methods-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }

  .contact-hero .hero-text h1 {
    font-size: 2.5rem;
  }

  @media (max-width: 480px) {
    .hero-text h1 {
      font-size: 2rem;
    }

    .nav-links {
      flex-direction: column;
      gap: 0.5rem;
    }

    .cta-section {
      padding: 2rem 0;
    }

    .quote-form input,
    .quote-form textarea {
      font-size: 16px;
    }

    .map-container {
      height: 250px;
    }
  }
}
