*{
  box-sizing:border-box;
}

body{
  font-family:'Prompt',sans-serif;
  margin:0;
  background:#ffffff;
  color:#1f2937;
}

.site-header{
  background:#ffffff;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 10px rgba(0,0,0,0.04);
}

.navbar{
  min-height:100px;
}

.navbar-brand{
  font-size:26px;
  font-weight:700;
  color:#1455c8!important;
  line-height:1;
}

.navbar-brand span{
  display:block;
  font-size:18px;
  color:#1455c8;
}

.nav-link{
  color:#1f2937!important;
  font-size:16px;
  font-weight:400;
  margin:0 18px;
}

.nav-link:hover,
.nav-link.active{
  color:#e21b2d!important;
}

.btn-main{
  background:#e21b2d;
  color:#ffffff;
  padding:14px 28px;
  border-radius:5px;
  text-decoration:none;
  font-weight:500;
}

.btn-main:hover{
  background:#c91525;
  color:#ffffff;
}

.hero-section{
  height:500px;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(15,23,42,0.62);
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#ffffff;
  width:100%;
}

.hero-content h1{
  font-size:56px;
  font-weight:700;
  margin-bottom:20px;
}

.hero-content p{
  font-size:20px;
  font-weight:300;
}

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

.page-section h1{
  font-size:42px;
  font-weight:700;
  margin-bottom:25px;
}

.content-box{
  font-size:17px;
  line-height:1.9;
  color:#374151;
}

.section-padding{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#1455c8;
  font-weight:600;
  letter-spacing:2px;
  display:block;
  margin-bottom:10px;
}

.section-title h2{
  font-size:42px;
  font-weight:700;
  color:#111827;
  margin-bottom:15px;
}

.section-title p{
  color:#6b7280;
  max-width:700px;
  margin:auto;
}

.portfolio-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.3s;
  height:100%;
}

.portfolio-card:hover{
  transform:translateY(-10px);
}

.portfolio-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}

.portfolio-body{
  padding:25px;
}

.portfolio-body h3{
  font-size:28px;
  font-weight:700;
  color:#111827;
  margin-bottom:10px;
}

.portfolio-body p{
  color:#6b7280;
  line-height:1.8;
  margin:0;
}

.package-card{
  background:#fff;
  border-radius:22px;
  padding:30px;
  height:100%;
  box-shadow:0 12px 35px rgba(15,23,42,.08);
  transition:.25s;
  border-top:5px solid #1455c8;
}

.package-card:hover{
  transform:translateY(-8px);
}

.package-header h3{
  font-size:26px;
  font-weight:700;
  color:#111827;
}

.package-price{
  font-size:36px;
  font-weight:700;
  color:#e21b2d;
  margin:15px 0;
}

.package-desc{
  color:#6b7280;
  line-height:1.8;
}

.package-features{
  list-style:none;
  padding:0;
  margin:25px 0;
}

.package-features li{
  padding:8px 0;
  color:#374151;
}

.site-footer{
  background:#111827;
  color:#ffffff;
  padding:40px 0;
  margin-top:60px;
}

@media(max-width:768px){
  .navbar{
    min-height:auto;
    padding:15px 0;
  }

  .nav-link{
    margin:8px 0;
  }

  .hero-section{
    min-height:480px;
  }

  .hero-content h1{
    font-size:36px;
  }

  .hero-content p{
    font-size:16px;
  }

  .page-section{
    padding:45px 0;
  }

  .section-padding{
    padding:60px 0;
  }

  .section-title h2{
    font-size:30px;
  }
}