* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a5490;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.nav a:hover {
  color: #1a5490;
}

.btn-phone {
  background: #1a5490;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-phone:hover {
  background: #144070;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a5490 0%, #2874c0 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="300" fill="rgba(255,255,255,0.03)"/><circle cx="900" cy="400" r="400" fill="rgba(255,255,255,0.03)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 800px;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
}

.hero-promise {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta {
  background: white;
  color: #1a5490;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-call {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: inline-block;
}

.btn-call:hover {
  background: white;
  color: #1a5490;
}

/* Intro */
.intro {
  background: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

.intro h2 {
  font-size: 2rem;
  color: #1a5490;
  margin-bottom: 1rem;
  font-weight: 700;
}

.intro p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}

/* About Story Section */
.about-story {
  background: white;
  padding: 80px 0;
}

.about-story h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a5490;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about-story p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.story-closing {
  font-weight: 600;
  color: #1a5490;
  font-style: italic;
}

/* Services */
.services {
  padding: 80px 0;
  background: white;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a5490;
  margin-bottom: 3rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: #1a5490;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1a5490;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Why Section */
.why-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.why-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a5490;
  margin-bottom: 3rem;
  font-weight: 700;
}

.why-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-lead {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  padding: 0.5rem 0;
}

.why-list strong {
  color: #1a5490;
}

.why-stats {
  display: grid;
  gap: 1.5rem;
}

.stat-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a5490;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #555;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials {
  background: white;
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a5490;
  margin-bottom: 3rem;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #1a5490;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-rating {
  color: #ffa500;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-meta strong {
  color: #1a5490;
  font-size: 1.1rem;
  display: block;
}

.testimonial-meta span {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-text {
  color: #333;
  line-height: 1.7;
  font-size: 1.05rem;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-recommend {
  color: #28a745;
  font-size: 0.95rem;
  font-weight: 600;
  padding-top: 0.5rem;
  border-top: 1px solid #ddd;
}

/* Quote Section */
.quote-section {
  background: white;
  padding: 80px 0;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.quote-info h2 {
  font-size: 2rem;
  color: #1a5490;
  margin-bottom: 1rem;
  font-weight: 700;
}

.quote-info > p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-item strong {
  color: #1a5490;
  font-size: 1rem;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-item a:hover {
  color: #1a5490;
}

.contact-item span {
  color: #555;
  font-size: 1.05rem;
}

.quote-form-wrapper {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-form input,
.quote-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #1a5490;
}

.btn-submit {
  background: #1a5490;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #144070;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  display: none;
}

.form-message.show {
  display: block;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* Footer */
.site-footer {
  background: #1a5490;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-brand strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Privacy Policy Page */
.policy-section {
  padding: 120px 0 80px;
  background: #f8f9fa;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.policy-content h1 {
  font-size: 2.5rem;
  color: #1a5490;
  margin-bottom: 0.5rem;
}

.policy-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-size: 1.8rem;
  color: #1a5490;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-list {
  color: #555;
  line-height: 1.8;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-list li {
  margin-bottom: 0.5rem;
}

.contact-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #1a5490;
  margin-top: 1.5rem;
}

.contact-box p {
  margin-bottom: 0.5rem;
}

.contact-box a {
  color: #1a5490;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #1a5490;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #144070;
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Header */
  .nav {
    display: none;
  }

  .site-header {
    padding: 0.75rem 0;
  }

  .btn-phone {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
    white-space: nowrap;
  }

  .brand .logo {
    font-size: 1.1rem;
  }

  .logo-img {
    height: 25px;
  }

  .header-inner {
    gap: 0.5rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 60px 0 50px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-promise {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-cta,
  .btn-call {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  /* Intro */
  .intro {
    padding: 40px 0;
  }

  .intro h2 {
    font-size: 1.5rem;
  }

  .intro p {
    font-size: 1rem;
  }

  /* About Story */
  .about-story {
    padding: 50px 0;
  }

  .about-story h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .about-story p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  /* Services */
  .services {
    padding: 50px 0;
  }

  .services h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  /* Why Section */
  .why-section {
    padding: 50px 0;
  }

  .why-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .why-list li {
    font-size: 1rem;
  }

  .stat-box {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Testimonials */
  .testimonials {
    padding: 50px 0;
  }

  .testimonials h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  /* Quote Section */
  .quote-section {
    padding: 50px 0;
  }

  .quote-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quote-info h2 {
    font-size: 1.5rem;
  }

  .quote-info > p {
    font-size: 1rem;
  }

  .quote-form-wrapper {
    padding: 1.5rem;
  }

  .btn-submit {
    font-size: 1rem;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand strong {
    font-size: 1.25rem;
  }

  /* Privacy Policy */
  .policy-section {
    padding: 80px 0 50px;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .policy-content h1 {
    font-size: 1.75rem;
  }

  .policy-content h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
  }

  .policy-content h3 {
    font-size: 1.1rem;
  }

  .policy-content p {
    font-size: 0.95rem;
  }
}