.marka-wrapper{
max-width:1200px;
margin:auto;
padding:40px;
background:#fff;
border-radius:24px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
}
.marka-header{
text-align:center;
margin-bottom:40px;
}
.marka-header h2{
font-size:36px;
margin-bottom:10px;
}
.marka-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}
.form-group{
display:flex;
flex-direction:column;
}
.form-group.full{
grid-column:1/-1;
}
.form-group label{
margin-bottom:8px;
font-weight:600;
}
.form-group input{
height:54px;
border:1px solid #ddd;
border-radius:14px;
padding:0 15px;
font-size:15px;
}
.section-title{
margin-top:40px;
}
.sinif-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
}
.sinif-card{
border:1px solid #ddd;
border-radius:16px;
padding:15px;
background:#fafafa;
cursor:pointer;
}
.sinif-card small{
display:block;
margin-top:8px;
color:#666;
}
.price-box{
margin-top:30px;
background:#111827;
color:#fff;
padding:30px;
border-radius:20px;
}
.price-row{
display:flex;
justify-content:space-between;
margin-bottom:15px;
}
.total{
font-size:24px;
color:#60a5fa;
font-weight:bold;
}
.submit-btn{
width:100%;
height:58px;
border:none;
border-radius:16px;
background:#2563eb;
color:#fff;
font-size:18px;
font-weight:bold;
margin-top:25px;
cursor:pointer;
}
@media(max-width:768px){
.marka-grid{
grid-template-columns:1fr;
}
.sinif-grid{
grid-template-columns:repeat(2,1fr);
}
}