/* BizBuilding.com - Matching bizlocalboost.com styles */

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

:root {
  --accent-blue: #1C6FA6;
  --light-blue-bg: #EEF6FC;
  --dark-text: #212529;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark-text);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.blue-text {
  color: var(--accent-blue);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  background: var(--white);
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--dark-text) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand i {
  color: var(--accent-blue);
  font-size: 2rem;
}

.navbar-brand span {
  line-height: 1.1;
}

.navbar-nav .nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  font-size: 15px;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-blue) !important;
}

/* Hero Section */
.hero-section {
  background: var(--light-blue-bg);
  padding: 80px 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-section .lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--accent-blue);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--accent-blue);
  color: var(--white);
  border: 2px solid var(--accent-blue);
  padding: 12px 35px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 5px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background-color: #155a87;
  border-color: #155a87;
  color: var(--white);
  text-decoration: none;
}

.btn-outline-custom {
  background-color: var(--white);
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  padding: 12px 35px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 5px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-custom:hover {
  background-color: var(--accent-blue);
  color: var(--white);
  text-decoration: none;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
}

.benefits-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.benefits-section h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.benefits-section ul {
  padding-left: 20px;
}

.benefits-section ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.benefits-section ul li ul li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 4px;
}

.benefits-summary {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 20px;
}

/* Features Column */
.features-column {
  padding-left: 40px;
}

.features-column .google-img {
  max-width: 200px;
  margin-bottom: 20px;
}

.features-column ul {
  list-style: disc;
  padding-left: 20px;
}

.features-column ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 50px 0 80px;
  text-align: center;
}

.cta-section .btn-primary-custom,
.cta-section .btn-outline-custom {
  margin: 0 10px;
}

/* Footer */
.footer-section {
  background-color: var(--accent-blue);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-section h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
  display: inline;
  color: var(--white);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .benefits-section h2 {
    font-size: 1.6rem;
  }

  .features-column {
    padding-left: 15px;
    margin-top: 40px;
  }

  .cta-section .btn-primary-custom,
  .cta-section .btn-outline-custom {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
}
