.hero {
    background: linear-gradient(#ba0600, var(--primary-color), #ba0600);
    height: 300px;
}

@media (max-width:350px) {
    .hero {
        height: 200px;
    }
}

.info .details-list,
.social-list {
    list-style: none;
    padding-left: 0;
}

.details-list li {
    margin-top: 0.5rem;
    font-size: 20px;
   
}
.details-list li p{
    position: relative;
    cursor: pointer;
}
.details-list li p::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width:0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 1s ease;
}
.details-list li:hover p::after{
    width: 50%;
}

.details-list span {
    padding-right: 5px;
    font-weight: 700;
    color: var(--primary-color);
}



.social-list li {
    padding-top: 2rem;
    margin-right: 15px;
    font-size: 24px;
}

.social-list i {
    padding: 7px 10px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

.social-list i:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 
                0 6px 20px rgba(0, 0, 0, 0.1);
}


.form-container h4 {
    text-align: center;
}

.contact-form {
    background: #fff;
    padding: 20px;
    width: 90%;
    margin: auto;
}

.contact-form h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}