﻿.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.hero {
  background: linear-gradient(to right, #0f4c81 0%, #1565c0 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .subheading {
  color: #fff;
  font-size: 1.4em;
  font-weight: 300;
  margin-bottom: 15px;
}

.hero .tagline {
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 40px;
  opacity: .95;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.cta-primary {
  background: white;
  border-radius: 8px;
  color: #0f4c81;
  display: inline-block;
  font-size: 1.1em;
  font-weight: bold;
  padding: 15px 40px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.cta-primary:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  border: 2px solid white;
  border-radius: 8px;
  color: white;
  display: inline-block;
  font-size: 1.1em;
  font-weight: bold;
  padding: 15px 40px;
  text-decoration: none;
  transition: background .2s;
}

.cta-secondary:hover {
  background: rgba(255,255,255,.1);
}

.feature-highlight {
  background: rgba(255, 255, 255, .15);
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 10px;
  margin: 30px auto 0;
  max-width: 800px;
  padding: 25px 30px;
}

.feature-highlight h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.feature-highlight ul {
  list-style: none;
  padding: 0;
}

.feature-highlight li {
  color: #fff;
  font-size: 1.05em;
  padding: 8px 0;
}

.feature-highlight li:before {
  content: '✓ ';
  font-weight: bold;
  margin-right: 8px;
}

.problem-section {
  background: #f8f9fa;
  padding: 60px 20px;
}

.problem-section h2 {
  color: #2c3e50;
  font-size: 2.2em;
  margin-bottom: 20px;
  text-align: center;
}

.problem-section .intro {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  text-align: center;
}

.package-details {
  background: white;
  padding: 60px 20px;
}

.package-details h2 {
  color: #2c3e50;
  font-size: 2.2em;
  margin-bottom: 50px;
  text-align: center;
}

.package-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 1000px;
}

.package-box {
  background: #f8f9fa;
  border-radius: 10px;
  border-top: 4px solid #0f4c81;
  padding: 30px;
}

.package-box h3 {
  color: #0f4c81;
  font-size: 1.4em;
  margin-bottom: 20px;
}

.package-box ul {
  list-style: none;
  padding: 0;
}

.package-box li {
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
}

.package-box li:last-child {
  border-bottom: none;
}

.categories-section {
  background: #f8f9fa;
  padding: 60px 20px;
}

.categories-section h2 {
  color: #2c3e50;
  font-size: 2.2em;
  margin-bottom: 50px;
  text-align: center;
}

.categories-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1000px;
}

.category-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  padding: 25px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.category-card:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,.15);
  transform: translateY(-5px);
}

.category-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.category-card h3 {
  color: #2c3e50;
  font-size: 1.1em;
}

.how-it-works {
  background: white;
  padding: 60px 20px;
}

.how-it-works h2 {
  color: #2c3e50;
  font-size: 2.2em;
  margin-bottom: 50px;
  text-align: center;
}

.steps {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1000px;
}

.step {
  padding: 20px;
  text-align: center;
}

.step-number {
  align-items: center;
  background: #0f4c81;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 1.5em;
  font-weight: bold;
  height: 60px;
  justify-content: center;
  margin: 0 auto 20px;
  width: 60px;
}

.step h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.step p {
  color: #555;
  line-height: 1.6;
}

.pricing-section {
  background: linear-gradient(to right, #0f4c81 0%, #1565c0 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.pricing-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.pricing-highlight {
  font-size: 3.5em;
  font-weight: bold;
  margin: 20px 0;
}

.pricing-small {
  color: #fff;
  font-size: .9em;
  margin-bottom: 30px;
  opacity: .9;
}

.pricing-includes {
  background: rgba(255, 255, 255, .1);
  border-radius: 10px;
  margin: 30px auto;
  max-width: 700px;
  padding: 30px;
  text-align: left;
}

.pricing-includes h3 {
  margin-bottom: 20px;
  text-align: center;
}

.pricing-includes ul {
  list-style: none;
  padding: 0;
}

.pricing-includes li {
  color: #fff;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.pricing-includes li:before {
  content: '✓';
  font-size: 1.2em;
  font-weight: bold;
  left: 0;
  position: absolute;
}

.final-cta {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.final-cta h2 {
  color: #2c3e50;
  font-size: 2.2em;
  margin-bottom: 30px;
}

.final-cta p {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .hero .subheading {
    font-size: 1.1em;
  }

  .package-grid
  ,
  .steps
  ,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .pricing-highlight {
    font-size: 2.5em;
  }

  .custom-solutions > div > div > div {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 500px) {
  .cta-buttons {
    justify-content: center;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
  }

  .cta-primary
  ,
  .cta-secondary {
    text-align: center;
    width: 100%;
  }
}
