body {
    font-family: Arial, sans-serif;
    background-color: #ff0000;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.card {
    background-color: white;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.card-header img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 6px solid #a05ee5;
}

.card-body {
    padding: 20px;
}

h2 {
    margin: 0;
    font-size: 20px;
}

.gov {
    color: #a05ee5;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 4px;
}

.name {
    color: #000;
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 8px;
}

.title {
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address {
    color: #444;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address a {
    color: #a05ee5;
    text-decoration: none;
}

.contact {
    font-size: 14px;
    color: #222;
}

.icon {
    margin-right: 8px;
    color: #a05ee5;
}

.phone-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.phone-row span {
    font-size: 14px;
    color: #222;
}

.phone-img {
    width: 90px;  /* كبرناها من 60px إلى 90px */
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}



