*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f7fa;
    color:#333;
}

.container{
    width:1200px;
    max-width:95%;
    margin:auto;
}

.header{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.header h1{
    font-size:48px;
    margin-bottom:15px;
}

.header p{
    font-size:18px;
    opacity:.8;
}

.search-section{
    padding:30px 0;
}

.search-section input{
    width:100%;
    padding:18px;
    border:none;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    font-size:16px;
}

.plugins{
    padding:40px 0 80px;
}

.plugins .container{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:30px;
}

.plugin-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

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

.plugin-card img{
    width:100%;
    display:block;
}

.content{
    padding:25px;
}

.content h3{
    margin-bottom:10px;
    font-size:22px;
}

.content p{
    color:#666;
    margin-bottom:20px;
    line-height:1.6;
}

.bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price{
    color:#2D9FC0;
    font-size:22px;
    font-weight:700;
}

.btn{
    text-decoration:none;
    background:#2D9FC0;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    transition:.3s;
}

.btn:hover{
    background:#1E6C91;
}


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

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:90px;
}

.logo img{
    max-height:92px;
}

.main-menu ul{
    display:flex;
    list-style:none;
    gap:35px;
}

.main-menu a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.main-menu a:hover{
    color:#6b46ff;
}

.contact-btn{
    background:#2D9FC0;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#1E6C91;
}

.hero{
    background:linear-gradient(
        135deg,
        #2D9FC0 0%,
        #1E6C91 100%
    );
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.hero h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}

.hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
    line-height:1.7;
    color:rgba(255,255,255,.9);
}

@media(max-width:991px){

    .header-inner{
        flex-direction:column;
        height:auto;
        padding:20px 0;
        gap:20px;
    }

    .main-menu ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero h1{
        font-size:42px;
    }
}


.plugin-card{
    background:#fff;
    border-radius:20px;
    display:flex;
    flex-direction:column;
}

.content{
    display:flex;
    flex-direction:column;
    height:100%;
}

.content h3{
    margin-bottom:20px;
}

.bottom{
    margin-top:auto;      /* Push to bottom */
    text-align:center;    /* Center button */
}

.btn{
    display:inline-block;
}