.content-container {
    padding: 20px;
    font-weight: bold;
}

.contact-info {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: right;
}

.contact-info h2 {
    color: #4a176b;
}

.contact-info p {
    line-height: 1.8;
    font-size: 16px;
}

.form-container {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.form-container h3 {
    color: #4a176b;
    margin-bottom: 15px;
    
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea, select {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-family: B Nazanin, Arial, sans-serif;
    outline: none;
}

input:focus, textarea:focus, select:focus {
    border-color: #4a176b;
    box-shadow: 0 0 5px rgba(74, 23, 107, 0.5);
}

button {
    padding: 10px;
    border: none;
    background-color: #4a176b;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-family: B Nazanin, Arial, sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px;
}

button:hover {
    background-color: #fff;
    color: #4a176b;
    border: 1px solid #4a176b;
    transition: all 0.3s ease;
}

.cta-button {
    margin-top: 20px;
    text-align: center;
}

.cta-button a {
    display: inline-block;
    background-color: #4a176b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button a:hover {
    background-color: #fff;
    color: #4a176b;
    border: 2px solid #4a176b;
}
dl {
    display: flex;
    flex-direction: row; 
    align-items: center;
    text-align: center;
    justify-self:center;
    gap: 2em;
}
dl li{
    list-style-type: none;
    gap: 5px;
    display: flex;
    flex-direction: column;
    padding: 5px;
}
dl img {
    width: 100px;
    height: 100px;
    gap: 5px;
}

dl li a {
    background-color: #4a176b;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 30px;
    font-size: 15px;
    gap: 5px;
    
    
}
dl li a:hover {
    background-color: white;
    color: #4a176b;
    text-decoration: none;
    
}


@media (max-width: 992px) {
    .contact-info, .form-container {
        padding: 15px;
    }

    .cta-button a {
        padding: 12px 25px;
        font-size: 16px;
    }

    dl {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2em;
    }

    dl li {
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    dl img {
        width: 80px;
        height: 80px;
    }

    dl dt a {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .content-container {
        padding: 10px;
    }

    .contact-info h2, .form-container h3 {
        font-size: 18px;
        text-align: center;
    }

    input, textarea, select {
        font-size: 14px;
        padding: 8px;
    }

    button {
        font-size: 14px;
        padding: 8px;
    }

    .cta-button a {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
        padding: 12px;
    }

    dl {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    dl img {
        width: 50px;
        height: 50px;
    }

    dl dt a {
        font-size: 14px;
        padding: 6px 12px;
    }
}
