.its-header{

    text-align:center;
    padding:30px;
    border-radius:12px 12px 0 0;
background:#C8102E;
    color:white;
    margin:-35px -35px 30px -35px;

}

.its-header h1{

    color:#FFFFFF;
    margin:0;
    font-size:34px;
    letter-spacing:1px;

}

.its-header p{

    margin-top:8px;
    font-size:15px;
    opacity:.9;

}

.its-header h2{

    margin-top:20px;
    background:white;
color:#C8102E;  
    display:inline-block;
    padding:10px 25px;
    border-radius:30px;

}

.company-brands{

    background:#ffffff;
    padding:20px;
    margin-top:25px;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;

}

.company-brands img{
    height:90px;
    width:auto;
    object-fit:contain;
    display:block;
}





body{
    background:#f4f6f9;
    font-family:Arial, Helvetica, sans-serif;
}

.its-container{
    max-width:850px;
    margin:40px auto;
    background:#ffffff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.10);
}

.its-header{
    text-align:center;
    margin-bottom:30px;
}




.its-header h2{
    margin-top:15px;
}



.section{
    background:#fafafa;
    border:1px solid #ddd;
    border-radius:8px;
    padding:20px;
    margin-bottom:25px;
}

.section-title{

    font-size:20px;
    font-weight:700;
    color:#C8102E;
    border-left:5px solid #C8102E;
    padding-left:12px;
    margin-bottom:20px;

}


input,
select,
textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
    box-sizing:border-box;
}

textarea{
    resize:vertical;
}

button{

    width:100%;
    background:#C8102E;
    color:white;
    border:none;
    padding:16px;
    font-size:18px;
    font-weight:bold;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;

}

button:hover{

    background:#A50D27;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(200,16,46,.30);

}

/* Radio Button Cards */

.radio-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin:15px 0 25px;
}

.radio-card{
    position:relative;
    cursor:pointer;
    flex:1;
    min-width:180px;
}

.radio-card input{
    display:none;
}

.radio-card span{
    display:block;
    padding:15px;
    text-align:center;
    border:2px solid #d5d5d5;
    border-radius:10px;
    background:#fff;
    font-weight:bold;
    transition:.25s;
}

.radio-card:hover span{
    border-color:#C8102E;
    transform:translateY(-2px);
}

.radio-card input:checked + span{
    background:#C8102E;
    color:#fff;
    border-color:#C8102E;
    box-shadow:0 4px 12px rgba(200,16,46,.35);
}

.priority-group{

    display:flex;
    gap:15px;
    margin-top:10px;

}

.priority{

    flex:1;
    text-align:center;
    padding:12px;
    border-radius:8px;
    border:2px solid #ddd;
    cursor:pointer;
    font-weight:bold;
}

.priority input{

    display:none;

}

.low{

    background:#e8f5e9;

}

.medium{

    background:#fff8e1;

}

.high{

    background:#ffebee;

}