/*
 * Custom stylesheet for Standardized Contracts promotional landing pages.
 *
 * This file defines a clean, modern layout inspired by the existing
 * StandardizedContracts.com design and the accompanying brand guide.
 * It uses a simple grid system, plenty of white space and a palette
 * dominated by a deep “trust blue” (#0F4C81) with neutral grays for
 * backgrounds. Headings and body text rely on the Source Sans 3
 * typeface, loaded via Google Fonts. Buttons and links are styled
 * consistently to encourage conversions.
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Source+Sans+3:wght@400;600;700&display=swap');


/* Hero section */
.hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #f5f7fa;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px;
}

.hero h1 span {
  color: #0F4C81;
}

.hero p {
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.btn.primary {
  background-color: #0F4C81;
  color: #ffffff;
}

.btn.primary:hover {
  background-color: #0c3b66;
}

.btn.secondary {
  background-color: #ffffff;
  color: #0F4C81;
  border: 2px solid #0F4C81;
}

.btn.secondary:hover {
  background-color: #f0f5fa;
}

/* Sections */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .features {
    flex-direction: row;
    justify-content: space-between;
  }
}

.feature-card {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.feature-card img {
  height: 120px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  font-size: 16px;
  margin: 0;
}

/* Pricing */
.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .pricing {
    flex-direction: row;
  }
}

.pricing-card {
  flex: 1;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-card ul li {
  margin: 8px 0;
  font-size: 16px;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 18px;
  font-weight: 400;
}

/* Call to action (discount) */
.cta-section {
  background-color: #0F4C81;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

.discount-code {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 14px;
  color: #666;
  padding: 40px 20px;
  background-color: #f5f7fa;
}