header{
  background: url('../img/landing-desktop.jpg');
}
#hero2{
  background: url('../img/laptop1.jpg'), linear-gradient(rgba(0,0,0,0.8),rgba(255,255,255,1));
  background-blend-mode: multiply;
  background-position: center;
  background-size: cover;
}
#hero2 h2{
  background: rgba(0,0,0,0.5);
}
/*Services*/
.services {
  padding: 80px 20px;
  background: #f9f9f9;
  /*text-align: center;*/
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #2F4F4F;
}

.services-grid {
  display: block;
  /*grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));*/
  
  max-width: 700px;
  margin: auto;
}

.service-card {
  margin-bottom: 20px;
  display: flex;
  gap: 50px;
  background: white;
  padding: 25px;
  border: solid goldenrod;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.service-card i {
  font-size: 40px;
  color: goldenrod;
  margin: 0;
  display: grid;
  align-items: center;
  /*background: blue*/
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

.service-card:hover {
  transform: translateY(-5px);
}
/* Packages*/
.packages {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.packages h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #2F4F4F;
}

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

.package {
  border: 1px solid goldenrod;
  padding-bottom: 30px;
  
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.package h3 {
  font-size: 1.5rem;
  margin: 0;
  padding: 30px;
  margin-bottom: 15px;
  color: #fff;
  background: goldenrod;
  
}

.package .price {
  font-size: 1.2rem;
  color: #007b5e;
  margin-bottom: 20px;
  font-weight: bold;
}

.package ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.package ul li {
  margin: 10px 0;
  color: #555;
}

.package .btn {
  display: inline-block;
  background:goldenrod;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.package:hover {
  transform: translateY(-5px);
}
#package-basic h3{
  background: dodgerblue;
}
#package-standard h3{
  background: #007b5e;
}
#package-basic .btn{
  background: dodgerblue;
}
#package-standard .btn{
  background: #007b5e;
}
#package-basic {
  border:  solid dodgerblue;
}
#package-standard{
  border:  solid #007b5e;
}
@media(max-width:700px){
  
}