*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}



.st-container{
    max-width:600px;
    margin:50px auto;
    background:#fff;
    padding:35px;
    border-radius:14px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
	margin-top:0
}

.st-container h1{
    text-align:center;
    margin-bottom:10px;
}

.st-desc{
    text-align:center;
    margin-bottom:30px;
    color:#666;
}

.st-form{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.st-form div{
    display:flex;
    flex-direction:column;
}

.st-form label{
    font-weight:600;
    margin-bottom:6px;
}

.st-form input{
    padding:12px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:16px;
}

.st-btn{
    margin-top:30px;
    width:100%;
    padding:14px;
    font-size:18px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#4CAF50,#2e7d32);
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.st-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.st-results{
    margin-top:40px;
    padding:25px;
    background:#f9fafc;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.st-results h2{
    text-align:center;
    margin-bottom:20px;
}

.st-row{
    margin:12px 0;
    font-size:18px;
}

.st-highlight{
    font-size:22px;
    font-weight:700;
    color:#e91e63;
}

@media(max-width:600px){
    .st-container{
        padding:20px;
    }
	.st-container{
    max-width:95%;
    width:95%;
    margin:20px auto;
    
}

.st-container h1{
    font-size:22px
}
	
	
}