        @font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Regular.ttf') format('opentype');
  font-style: normal;
}
    
*{margin:0;padding:0;box-sizing:border-box; font-family: 'OpenSans';}
body{font-family:Arial,sans-serif;color:#222;line-height:1.7}
.container{width:90%;max-width:1200px;margin:auto}
header{background:#fff;color:#fff;padding:10px 0}
.logo{font-size:28px;font-weight:700}
.hero{
    position: relative;
    background-image: url("../images/Build_A_Bundle_Background_copy-min.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75); /* adjust opacity */
    z-index: 1;
}

.hero > *{
    position: relative;
    z-index: 2;
}
.hero h1{font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;}
.hero-btn{
    display:inline-block;
    margin-top:24px;
    padding:9px 42px;
    background:#43397c;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:8px;
    transition:0.3s;
    cursor:pointer;
    font-size: 21px;
}

.hero-btn:hover{
    transform:translateY(-2px);
    opacity:0.9;
}
.section{padding:20px 0}
.section-title{text-align:center;margin-bottom:20px}
.rak{
    text-align: center;
}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:25px}
.card{background:#f8fafc;padding:30px;border-radius:12px}
footer{background:#0f172a;color:white;text-align:center;padding:10px}
footer a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .rak{
    text-align: center;
}
}