/* ========================================
   Plumbing Services Newsletter Template
   Colors: Blue (#0a4b7a), White, Teal (#14a3c7)
   ======================================== */

body, table, td, p, a, li, blockquote {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.email-wrapper {
  background-color: #e8f4f8;
  width: 100%;
}

.email-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.header {
  background: linear-gradient(135deg, #0a4b7a 0%, #0d6b9e 100%);
  padding: 20px 30px;
}

.header-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.header-tagline {
  font-size: 11px;
  color: #b3d9f0;
  letter-spacing: 1px;
}

.hero {
  background: linear-gradient(135deg, #0d6b9e 0%, #14a3c7 100%);
  padding: 45px 30px;
  text-align: center;
}

.hero-icon {
  font-size: 52px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 16px;
  color: #d4f0f8;
  margin-bottom: 20px;
}

.stats-section {
  background-color: #0a4b7a;
  padding: 25px 30px;
}

.stat-box {
  text-align: center;
  padding: 10px;
  border-right: 1px solid #1a6b9e;
}

.stat-box:last-child {
  border-right: none;
}

.stat-number {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  color: #b3d9f0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.featured-section {
  background-color: #ffffff;
  padding: 35px 30px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #0a4b7a;
  text-align: center;
  margin-bottom: 5px;
}

.section-title-line {
  width: 60px;
  height: 3px;
  background-color: #14a3c7;
  margin: 10px auto 25px auto;
  border-radius: 2px;
}

.feature-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0a4b7a;
  margin-bottom: 5px;
}

.feature-card-text {
  font-size: 12px;
  color: #555;
}

.promo-section {
  background: linear-gradient(135deg, #0a4b7a 0%, #0d6b9e 100%);
  padding: 35px 30px;
  text-align: center;
}

.promo-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.promo-text {
  font-size: 13px;
  color: #b3d9f0;
  margin-bottom: 12px;
}

.promo-price {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.promo-price span {
  font-size: 14px;
  color: #14a3c7;
  font-weight: 400;
}

.testimonials-section {
  background-color: #f0f9fc;
  padding: 30px;
}

.testimonial-stars {
  color: #14a3c7;
  font-size: 16px;
  margin-bottom: 8px;
}

.testimonial-quote {
  font-size: 13px;
  color: #444;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: #0a4b7a;
}

.testimonial-role {
  font-size: 11px;
  color: #888;
}

.cta-section {
  background-color: #ffffff;
  padding: 35px 30px;
  text-align: center;
  border-top: 4px solid #14a3c7;
}

.cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a4b7a;
  margin-bottom: 8px;
}

.cta-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 22px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0a4b7a 0%, #14a3c7 100%);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.social-section {
  background-color: #0a4b7a;
  padding: 20px 30px;
  text-align: center;
}

.social-section a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #1a6b9e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.footer {
  background-color: #062d4a;
  padding: 20px 30px;
}

.footer-links a {
  color: #14a3c7;
  font-size: 11px;
  text-decoration: none;
  margin: 0 10px;
}

.footer-text {
  font-size: 11px;
  color: #6a9fbf;
  text-align: center;
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .email-container { width: 100% !important; }
  .hero-title { font-size: 26px !important; }
  .hero-subtitle { font-size: 14px !important; }
  .stat-box { display: block !important; width: 100% !important; border-right: none !important; padding: 8px 0 !important; }
  .stat-number { font-size: 24px !important; }
  .header-logo { font-size: 20px !important; }
  .header-tagline { text-align: left !important; padding-top: 5px; }
  .feature-card-title { font-size: 14px !important; }
  .promo-price { font-size: 28px !important; }
}

@media only screen and (max-width: 480px) {
  .hero { padding: 25px 20px !important; }
  .hero-title { font-size: 22px !important; }
  .section-title { font-size: 18px !important; }
  .promo-title { font-size: 18px !important; }
  .cta-title { font-size: 20px !important; }
  .featured-section, .promo-section, .testimonials-section, .cta-section { padding: 20px !important; }
  .featured-section td[width="50%"] { width: 100% !important; display: block !important; }
}
