.pc-landing{
  font-family: Arial, Helvetica, sans-serif;
  color:#222;
  background:#f2f2f2;
}

.pc-container{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

.pc-narrow{
  max-width:900px;
}

.pc-center{
  text-align:center;
}

.pc-section{
  padding:80px 0;
}

.pc-section-light{
  background:#f2f2f2;
}

.pc-section-dark{
  background:#1f1f1f;
  color:#fff;
}

.pc-section-grey{
  background:#eaeaea;
}

.pc-section-cta{
  background:#dff5ff;
}

.pc-hero{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('https://pinturascortezon.com/wp-content/uploads/2026/03/pintores-cantabria-hero.jpg') center center / cover no-repeat;
  color:#fff;
  padding:100px 0;
}

.pc-hero h1{
  font-size:56px;
  line-height:1.1;
  margin:0 0 20px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
}

.pc-subtitle{
  font-size:20px;
  max-width:700px;
  margin:0 auto 45px;
  color:#fff;
}

.pc-icon-grid{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-top:20px;
}

.pc-icon-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  min-width:140px;
}

.pc-icon-circle{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#bfefff;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:bold;
}

.pc-icon-card span{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.5px;
  color:#fff;
}

.pc-section h2{
  font-size:34px;
  margin:0 0 25px;
  text-align:center;
  line-height:1.2;
}

.pc-section p{
  font-size:18px;
  line-height:1.8;
  margin:0 0 18px;
}

.pc-section-intro{
  text-align:center;
  max-width:850px;
  margin:0 auto 40px;
}

.pc-services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:40px;
}

.pc-service-box{
  background:#bfefff;
  color:#111;
  text-align:center;
  padding:18px 20px;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.pc-two-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.pc-image img{
  width:100%;
  height:auto;
  display:block;
}

.pc-check-list{
  list-style:none;
  padding:0;
  margin:30px 0 0;
}

.pc-check-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:16px;
  font-size:18px;
  line-height:1.6;
}

.pc-check-list li:before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#79d8ff;
  font-size:24px;
  line-height:1;
}

.pc-button{
  display:inline-block;
  margin-top:20px;
  background:#79d8ff;
  color:#111;
  text-decoration:none;
  padding:16px 34px;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:0.5px;
  transition:all 0.3s ease;
}

.pc-button:hover{
  background:#222;
  color:#fff;
}

@media (max-width: 991px){
  .pc-hero h1{
    font-size:42px;
  }

  .pc-two-columns{
    grid-template-columns:1fr;
  }

  .pc-services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 767px){
  .pc-section{
    padding:55px 0;
  }

  .pc-hero{
    min-height:auto;
    padding:80px 0;
  }

  .pc-hero h1{
    font-size:34px;
  }

  .pc-subtitle{
    font-size:18px;
  }

  .pc-section h2{
    font-size:28px;
  }

  .pc-section p,
  .pc-check-list li{
    font-size:16px;
  }

  .pc-services-grid{
    grid-template-columns:1fr;
  }
}