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

:root {
  --orange-primary: #ff6b35;
  --orange-dark: #e55a2b;
  --orange-light: #ff8c5a;
  --gray-dark: #2d2d2d;
  --gray-light: #f5f5f5;
  --white: #ffffff;

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light;
  color: #2d2d2d;
  background-color: #ffffff;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background-color: #ffffff;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
}

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

.header-content {
  max-width: 1200px;
  margin: 0 auto;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange-primary);
  margin: 0;
  letter-spacing: -0.5px;
}

.tagline {
  display: block;
  font-size: 0.875rem;
  color: #666;
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Main Content */
.main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
  margin: 0 -2rem 4rem;
  border-radius: 0 0 2rem 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 0;
  font-weight: 400;
}

/* Quote Section */
.quote-section {
  margin-bottom: 5rem;
}


/* CTA Button */
.cta-button {
  background-color: var(--orange-primary);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* Section Title */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 3rem;
}

/* Services Section */
.services {
  margin-bottom: 5rem;
}

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

.service-card {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
  border-color: var(--orange-light);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Why Us Section */
.why-us {
  background-color: var(--gray-light);
  padding: 4rem 2rem;
  margin: 0 -2rem 4rem;
  border-radius: 2rem;
}

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

.benefit {
  text-align: center;
}

.benefit h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--orange-primary);
  margin-bottom: 0.75rem;
}

.benefit p {
  color: #666;
  line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
  border-radius: 2rem;
  margin-bottom: 4rem;
  color: var(--white);
}

.contact-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.contact-cta .cta-button {
  background-color: var(--white);
  color: var(--orange-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-cta .cta-button:hover {
  background-color: var(--gray-light);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background-color: var(--gray-dark);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  margin-top: auto;
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .main {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 3rem 0 2.5rem;
    margin: 0 -1.5rem 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .quote-section {
    margin-bottom: 3rem;
  }

  .quote-iframe {
    min-height: 500px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us {
    padding: 3rem 1.5rem;
    margin: 0 -1.5rem 3rem;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-cta {
    padding: 3rem 1.5rem;
    margin-bottom: 3rem;
  }

  .contact-cta h3 {
    font-size: 1.75rem;
  }
}